We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d656b7 + 06adf71 commit e098307Copy full SHA for e098307
subprojects/robotpy-wpilib/wpilib/_impl/start.py
@@ -225,19 +225,6 @@ def _start(self, robot_cls: wpilib.RobotBase) -> bool:
225
# )
226
# return False
227
228
- if not isSimulation:
229
- robotpy_version = self.robotpy_version
230
- if robotpy_version:
231
- version_string = f"RobotPy {robotpy_version}"
232
- else:
233
- version_string = f"robotpy-wpilib {wpilib.__version__}"
234
-
235
- try:
236
- with open("/tmp/frc_versions/FRC_Lib_Version.ini", "w") as fp:
237
- fp.write(version_string)
238
- except:
239
- reportErrorInternal("Could not write FRC version file to disk")
240
241
try:
242
self.robot.startCompetition()
243
except KeyboardInterrupt:
0 commit comments