usse/scrape/venv/lib/python3.10/site-packages/geopy/compat.py
2023-12-22 15:26:01 +01:00

8 lines
153 B
Python

try:
# >=3.7
from asyncio import current_task
except ImportError:
from asyncio import Task
current_task = Task.current_task
del Task