Skip to content

Commit 39ade36

Browse files
committed
cleanup
1 parent 297bf9c commit 39ade36

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pymongo/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"""Python driver for MongoDB."""
1616
from __future__ import annotations
1717

18-
from concurrent.futures import ThreadPoolExecutor
1918
from typing import ContextManager, Optional
2019

2120
__all__ = [
@@ -167,6 +166,3 @@ def timeout(seconds: Optional[float]) -> ContextManager[None]:
167166
if seconds is not None:
168167
seconds = float(seconds)
169168
return _csot._TimeoutContext(seconds)
170-
171-
172-
_PYMONGO_EXECUTOR = ThreadPoolExecutor(thread_name_prefix="PYMONGO_EXECUTOR-")

0 commit comments

Comments
 (0)