8 lines
240 B
Python
8 lines
240 B
Python
"""Совместимость с Python 3.14+."""
|
||
|
||
import asyncio
|
||
import inspect
|
||
|
||
# Python 3.14+: asyncio.iscoroutinefunction deprecated, removed in 3.16
|
||
asyncio.iscoroutinefunction = inspect.iscoroutinefunction # type: ignore[assignment]
|