Skip to content

Commit d29b002

Browse files
committed
formatted code with black
1 parent 543219d commit d29b002

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

modules/cluster_estimation/cluster_estimation_worker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ def cluster_estimation_worker(
8484

8585
for single_input in input_data:
8686
if not isinstance(single_input, detection_in_world.DetectionInWorld):
87-
local_logger.warning(f"Skipping unexpected input: {input_data}, because of unexpected value: {single_input}")
87+
local_logger.warning(
88+
f"Skipping unexpected input: {input_data}, because of unexpected value: {single_input}"
89+
)
8890
is_invalid = True
8991
break
9092

modules/communications/communications_worker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ def communications_worker(
7070

7171
for single_input in input_data:
7272
if not isinstance(single_input, object_in_world.ObjectInWorld):
73-
local_logger.warning(f"Skipping unexpected input: {input_data}, because of unexpected value: {single_input}")
73+
local_logger.warning(
74+
f"Skipping unexpected input: {input_data}, because of unexpected value: {single_input}"
75+
)
7476
is_invalid = True
7577
break
7678

0 commit comments

Comments
 (0)