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.
1 parent 6cf2977 commit 9e27f0aCopy full SHA for 9e27f0a
subprojects/robotpy-wpilib/wpilib/iterativerobotpy.py
@@ -124,7 +124,7 @@ def driverStationConnected(self) -> None:
124
"""
125
pass
126
127
- def simulationInit(self) -> None:
+ def _simulationInit(self) -> None:
128
129
Robot-wide simulation initialization code should go here.
130
subprojects/robotpy-wpilib/wpilib/timedrobotpy.py
@@ -153,7 +153,7 @@ def startCompetition(self) -> None:
153
self.robotInit()
154
155
if self.isSimulation():
156
- self.simulationInit()
+ self._simulationInit()
157
158
# Tell the DS that the robot is ready to be enabled
159
print("********** Robot program startup complete **********")
0 commit comments