Skip to content

Commit

Permalink
Fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Jan 3, 2025
1 parent bf5c448 commit 7c9e171
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions twitchio/types_/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 7c9e171

Please sign in to comment.