Skip to content

Commit 0f33e68

Browse files
committed
Fix build for python 3.9
Signed-off-by: Mike Stitt <mike@stitt.cc>
1 parent 1dd067e commit 0f33e68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subprojects/robotpy-wpilib/tests/test_timedrobot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _onRobotInitStarted(self) -> None:
9696
self._robotInitStarted = True
9797
self._cond.notify_all()
9898

99-
def _robotThread(self, robot: TimedRobot | TimedRobotPy) -> None:
99+
def _robotThread(self, robot: TimedRobotPy) -> None:
100100
with self._cond:
101101
self._robotStarted = True
102102
self._cond.notify_all()

0 commit comments

Comments
 (0)