Skip to content

Commit

Permalink
Fixed failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
NewtonCrosby committed Dec 7, 2023
1 parent 5cdd9a7 commit fed8a3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions commands2/ramsetecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def __init__(
kinematics: DifferentialDriveKinematics,
outputVolts: Callable[[float, float], None],
*requirements: Subsystem,
feedforward: Optional[SimpleMotorFeedforwardMeters],
leftController: Optional[PIDController],
rightController: Optional[PIDController],
wheelSpeeds: Optional[Callable[[], DifferentialDriveWheelSpeeds]],
feedforward: Optional[SimpleMotorFeedforwardMeters] = None,
leftController: Optional[PIDController] = None,
rightController: Optional[PIDController] = None,
wheelSpeeds: Optional[Callable[[], DifferentialDriveWheelSpeeds]] = None,
):
"""Constructs a new RamseteCommand that, when executed, will follow the provided trajectory. PID
control and feedforward are handled internally, and outputs are scaled -12 to 12 representing
Expand Down

0 comments on commit fed8a3d

Please sign in to comment.