Skip to content

Commit

Permalink
Pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rafal-gorecki committed Nov 29, 2024
1 parent f09c16a commit 678324d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rosbot_bringup/test/test_multirobot.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def generate_test_description():
}.items(),
)

delayed_bringup = TimerAction(period=5.0*i, actions=[bringup_launch])
delayed_bringup = TimerAction(period=5.0 * i, actions=[bringup_launch])
actions.append(delayed_bringup)

return LaunchDescription(actions)
Expand Down
4 changes: 3 additions & 1 deletion rosbot_gazebo/test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ def __init__(self, name="test_node", namespace=None):
for range_topic_name in self.RANGE_SENSORS_TOPICS:
sub = self.create_subscription(LaserScan, range_topic_name, self.ranges_callback, 10)
self.range_subs.append(sub)
self.scan_sub = self.create_subscription(LaserScan, "scan_filtered", self.scan_callback, 10)
self.scan_sub = self.create_subscription(
LaserScan, "scan_filtered", self.scan_callback, 10
)

# Timer - send cmd_vel and check if the time needed for speed stabilization has elapsed
self.timer = self.create_timer(0.1, self.timer_callback)
Expand Down
1 change: 0 additions & 1 deletion rosbot_utils/rosbot_utils/flash-firmware-usb.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ def main():

flasher = FirmwareFlasher(binary_file, port)
flasher.flash_firmware()
print("Done.")


if __name__ == "__main__":
Expand Down

0 comments on commit 678324d

Please sign in to comment.