Skip to content

Commit ce72fb3

Browse files
authored
Fix lint
1 parent 85d7b8f commit ce72fb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_concurrent_futures/test_thread_pool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ def fork_process_and_return_exitcode():
8080
p.start()
8181
p.join()
8282
return p.exitcode
83-
83+
8484
with futures.ThreadPoolExecutor(1) as pool:
8585
process_exitcode = pool.submit(fork_process_and_return_exitcode).result()
86-
86+
8787
self.assertEqual(process_exitcode, 0)
8888

8989
def test_executor_map_current_future_cancel(self):

0 commit comments

Comments
 (0)