Skip to content

Commit e49f4db

Browse files
committed
Remove irrelevant vendordep comment
1 parent 27a3071 commit e49f4db

File tree

6 files changed

+1
-12
lines changed

6 files changed

+1
-12
lines changed

commands2/button/joystickbutton.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
class JoystickButton(Trigger):
77
"""
88
A Button that gets its state from a GenericHID.
9-
10-
This class is provided by the NewCommands VendorDep
119
"""
1210

1311
def __init__(self, joystick: GenericHID, buttonNumber: int):

commands2/button/networkbutton.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
class NetworkButton(Trigger):
1010
"""
1111
A Button that uses a NetworkTable boolean field.
12-
13-
This class is provided by the NewCommands VendorDep
1412
"""
1513

1614
@overload

commands2/button/povbutton.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
class POVButton(Trigger):
77
"""
88
A Button that gets its state from a POV on a GenericHID.
9-
10-
This class is provided by the NewCommands VendorDep
119
"""
1210

1311
def __init__(self, joystick: GenericHID, angle: int, povNumber: int = 0):

commands2/command.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ class Command(Sendable):
5050
5151
Commands are run synchronously from the main robot loop; no multithreading is used, unless
5252
specified explicitly from the command implementation.
53-
54-
This class is provided by the NewCommands VendorDep
5553
"""
5654

5755
InterruptionBehavior: TypeAlias = (

commands2/conditionalcommand.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ class ConditionalCommand(Command):
1515
The rules for command compositions apply: command instances that are passed to it cannot be
1616
added to any other composition or scheduled individually, and the composition requires all
1717
subsystems its components require.
18-
19-
This class is provided by the NewCommands VendorDep"""
18+
"""
2019

2120
selectedCommand: Command
2221

commands2/perpetualcommand.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ class PerpetualCommand(Command):
1414
1515
As a rule, CommandGroups require the union of the requirements of their component commands.
1616
17-
This class is provided by the NewCommands VendorDep
18-
1917
@deprecated PerpetualCommand violates the assumption that execute() doesn't get called after
2018
isFinished() returns true -- an assumption that should be valid. This was unsafe/undefined
2119
behavior from the start, and RepeatCommand provides an easy way to achieve similar end

0 commit comments

Comments
 (0)