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

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