usse/funda-scraper/venv/lib/python3.10/site-packages/geopy/compat.py

8 lines
153 B
Python
Raw Normal View History

2023-02-20 22:38:24 +00:00
try:
# >=3.7
from asyncio import current_task
except ImportError:
from asyncio import Task
current_task = Task.current_task
del Task