Skip to content

Commit 8966a9e

Browse files
committed
Fix imports
1 parent 9e2a67e commit 8966a9e

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

pymongo/asynchronous/mongo_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"""
3333
from __future__ import annotations
3434

35+
import asyncio
3536
import contextlib
3637
import os
3738
import warnings

pymongo/asynchronous/monitor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
from __future__ import annotations
1818

19+
import asyncio
1920
import atexit
2021
import logging
2122
import time

pymongo/synchronous/mongo_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"""
3333
from __future__ import annotations
3434

35+
import asyncio
3536
import contextlib
3637
import os
3738
import warnings

pymongo/synchronous/monitor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
from __future__ import annotations
1818

19+
import asyncio
1920
import atexit
2021
import logging
2122
import time

0 commit comments

Comments
 (0)