Skip to content

Commit f3a69f0

Browse files
committed
Add singular space
1 parent aaf0015 commit f3a69f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ArmBotOffboard/subsystems/drivesubsystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class DriveSubsystem(commands2.Subsystem):
1818
def __init__(self) -> None:
1919
super().__init__()
2020

21-
# The motors on the left side of the drive.
21+
# The motors on the left side of the drive.
2222
self.left1 = PWMSparkMax(constants.kLeftMotor1Port)
2323
self.left2 = PWMSparkMax(constants.kLeftMotor2Port)
2424

FrisbeeBot/subsystems/drivesubsystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self) -> None:
1616
"""Creates a new DriveSubsystem"""
1717
super().__init__()
1818

19-
# The motors on the left side of the drive.
19+
# The motors on the left side of the drive.
2020
self.left1 = PWMSparkMax(constants.DriveConstants.kLeftMotor1Port)
2121
self.left2 = PWMSparkMax(constants.DriveConstants.kLeftMotor2Port)
2222

GyroDriveCommands/subsystems/drivesubsystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self) -> None:
1818
super().__init__()
1919

2020

21-
# The motors on the left side of the drive.
21+
# The motors on the left side of the drive.
2222
self.left1 = PWMSparkMax(constants.DriveConstants.kLeftMotor1Port)
2323
self.left2 = PWMSparkMax(constants.DriveConstants.kLeftMotor2Port)
2424

0 commit comments

Comments
 (0)