diff --git a/twitchio/types_/options.py b/twitchio/types_/options.py index 1803624b..7291fd23 100644 --- a/twitchio/types_/options.py +++ b/twitchio/types_/options.py @@ -22,13 +22,17 @@ SOFTWARE. """ +from __future__ import annotations + from collections.abc import Callable, Coroutine -from typing import Any, NotRequired, TypedDict +from typing import TYPE_CHECKING, Any, NotRequired, TypedDict + -import aiohttp +if TYPE_CHECKING: + import aiohttp -from ..authentication import Scopes -from ..web.utils import BaseAdapter + from ..authentication import Scopes + from ..web.utils import BaseAdapter __all__ = ("ClientOptions", "WaitPredicateT")