Skip to content

Commit aeb61c8

Browse files
committed
Fix return value type
1 parent c567484 commit aeb61c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands2/commandscheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def unregisterSubsystem(self, *subsystems: Subsystem) -> None:
334334
for subsystem in subsystems:
335335
self._subsystems.pop(subsystem, None)
336336

337-
def getAllSubsystems(self) -> tuple[Subsystem]:
337+
def getAllSubsystems(self) -> tuple[Subsystem, ...]:
338338
"""
339339
Gets all registered subsystems as an immutable tuple.
340340
"""

0 commit comments

Comments
 (0)