We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee157a1 commit 2d59765Copy full SHA for 2d59765
commands2/swervecontrollercommand.py
@@ -263,7 +263,9 @@ def __init__(
263
else:
264
self._desiredRotation = self._trajectory.states()[-1].pose.rotation
265
self.addRequirements(
266
- requirements,
+ # Ignoring type due to mypy stating the addRequirements was expecting a Subsystem but got an iterable of a subsystem.
267
+ # The iterable of the subsystem was to be able to force optional kwargs for the users when overloading the constructor.
268
+ requirements, # type: ignore
269
)
270
self._timer = Timer()
271
0 commit comments