Skip to content

Commit aa847c4

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent a7dc8c1 commit aa847c4

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/software/thunderscope/wifi_communication_manager.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@
2121

2222
logger = create_logger(name=__name__, log_level=logging.DEBUG)
2323

24-
with open('robot_ip_config.yml', 'r') as file:
25-
robot_ip = list(yaml.safe_load(file).get('ip', {}).values())[:MAX_ROBOT_IDS_PER_SIDE]
24+
with open("robot_ip_config.yml", "r") as file:
25+
robot_ip = list(yaml.safe_load(file).get("ip", {}).values())[
26+
:MAX_ROBOT_IDS_PER_SIDE
27+
]
28+
2629

2730
class WifiCommunicationManager:
2831
"""Manages WiFi communication between different modules of the system."""

0 commit comments

Comments
 (0)