Skip to content

Commit bb85e0e

Browse files
author
Oleksandr Baltian
committed
Fix accidental swap in imports
1 parent ef5f59c commit bb85e0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/multiprocessing/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# If threading is available then ThreadPool should be provided. Therefore
2828
# we avoid top-level imports which are liable to fail on some systems.
2929
from . import util
30-
from . import TimeoutError, get_context
30+
from . import get_context, TimeoutError
3131
from .connection import wait
3232

3333
#

0 commit comments

Comments
 (0)