DEBSOURCES
Skip Quicknav
sources / auth0-python / 4.13.0-1 / auth0 / utils.py
1234567891011
def is_async_available() -> bool: try: import asyncio import aiohttp return True except ImportError: # pragma: no cover pass return False