Skip to content

Commit d04aa4f

Browse files
committed
Fixed linitng
1 parent 8f1626f commit d04aa4f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

modules/01-operating-room/tests/test_demo_flow.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,7 @@ def test_secure_launch(self, proc_manager_secure, dds_env_secure):
311311
# Apps that fail the handshake crash within the first 1-2 s; 3 s is
312312
# enough to catch startup failures while keeping the test fast.
313313
threads = [
314-
threading.Thread(target=wait_for_process_ready, args=(p, 3))
315-
for p in apps.values()
314+
threading.Thread(target=wait_for_process_ready, args=(p, 3)) for p in apps.values()
316315
]
317316
for t in threads:
318317
t.start()

0 commit comments

Comments
 (0)