Skip to content

Commit cf1d9f1

Browse files
committed
Fix indentation
1 parent d035c6b commit cf1d9f1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Lib/test/test_concurrent_futures/test_thread_pool.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,8 @@ def fork_process_and_return_exitcode():
8080

8181
with futures.ThreadPoolExecutor(1) as pool:
8282
process_exitcode = pool.submit(fork_process_and_return_exitcode).result()
83-
84-
self.assertEqual(process_exitcode, 0)
85-
8683

84+
self.assertEqual(process_exitcode, 0)
8785

8886
def test_executor_map_current_future_cancel(self):
8987
stop_event = threading.Event()

0 commit comments

Comments
 (0)