Skip to content
This repository was archived by the owner on Nov 13, 2025. It is now read-only.

Commit e08f5d3

Browse files
committed
fixed linting
1 parent 42e91c7 commit e08f5d3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tests/integration/test_flight_interface_worker.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,12 @@ def main() -> int:
155155
home_position = home_position_out_queue.queue.get()
156156
assert home_position is not None
157157

158-
data_points = [position_global.PositionGlobal.create(43.471468, -80.544205, 335),
159-
position_global.PositionGlobal.create(43.6629, -79.3957, 105),
160-
position_global.PositionGlobal.create(43.2609, -79.9192, 100),
161-
position_global.PositionGlobal.create(43.7735, -79.5019, 170)
162-
]
158+
data_points = [
159+
position_global.PositionGlobal.create(43.471468, -80.544205, 335),
160+
position_global.PositionGlobal.create(43.6629, -79.3957, 105),
161+
position_global.PositionGlobal.create(43.2609, -79.9192, 100),
162+
position_global.PositionGlobal.create(43.7735, -79.5019, 170),
163+
]
163164

164165
# Simulate communications worker
165166
for i in range(0, WORK_COUNT):

0 commit comments

Comments
 (0)