Skip to content

Commit

Permalink
🚨Fix linting warning
Browse files Browse the repository at this point in the history
standard import "collections.deque" should be placed before third party imports
  • Loading branch information
BruceMcRooster committed Nov 13, 2024
1 parent 18e200d commit 9aa0099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rb_ws/src/buggy/scripts/watchdog/watchdog.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env python3

from collections import deque

import argparse

import rospy

from std_msgs.msg import Bool, Int8, Float64

from collections import deque

STEERING_INSTRUCTION_MAX_LEN = 10

class Watchdog:
Expand Down

0 comments on commit 9aa0099

Please sign in to comment.