Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahStapp committed Jan 15, 2025
1 parent 297bf9c commit 39ade36
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pymongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"""Python driver for MongoDB."""
from __future__ import annotations

from concurrent.futures import ThreadPoolExecutor
from typing import ContextManager, Optional

__all__ = [
Expand Down Expand Up @@ -167,6 +166,3 @@ def timeout(seconds: Optional[float]) -> ContextManager[None]:
if seconds is not None:
seconds = float(seconds)
return _csot._TimeoutContext(seconds)


_PYMONGO_EXECUTOR = ThreadPoolExecutor(thread_name_prefix="PYMONGO_EXECUTOR-")

0 comments on commit 39ade36

Please sign in to comment.