Skip to content

Commit

Permalink
Remove unused action
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Dec 4, 2024
1 parent a52e69d commit 02872e0
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,6 @@ def perform(self, reevaluate=False):
raise NotImplementedError


class TurnMotorsOn(AbstractChangeMotorPower):
def perform(self, reevaluate=False):
if not self.blackboard.visualization_active and not self.blackboard.simulation_active:
req = SetBool.Request()
req.data = True
self.blackboard.motor_switch_service.call(req)
return self.pop()


class TurnMotorsOff(AbstractChangeMotorPower):
def perform(self, reevaluate=False):
if not self.blackboard.visualization_active and not self.blackboard.simulation_active:
Expand Down

0 comments on commit 02872e0

Please sign in to comment.