Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulgoel873 committed Oct 24, 2024
1 parent ead0cbe commit 3bb264f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rb_ws/src/buggy/buggy/watchdog/watchdog_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self):
"""
super().__init__('watchdog')

# Publishers
self.heartbeat_publisher = self.create_publisher(Bool, 'self/debug/heartbeat', 1)

Expand All @@ -29,7 +29,7 @@ def loop(self):
# Loop for the code that operates every 10ms
msg = Bool()
msg.data = True
self.heartbeat_publisher.publish(msg)
self.heartbeat_publisher.publish(msg)

def heartbeat_listener(self, msg : Node):
"""
Expand Down

0 comments on commit 3bb264f

Please sign in to comment.