Skip to content

Commit 0752b51

Browse files
committed
Remove uneeded type: ignore
1 parent e63f985 commit 0752b51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitchio/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def __init__(
149149
msg = "If you require the StarletteAdapter please install the required packages: 'pip install twitchio[starlette]'."
150150
logger.warning(msg)
151151

152-
adapter: BaseAdapter[Any] | type[BaseAdapter[Any]] | type[AiohttpAdapter[Self]] = options.get( # type: ignore
152+
adapter: BaseAdapter[Any] | type[BaseAdapter[Any]] | type[AiohttpAdapter[Self]] = options.get(
153153
"adapter", AiohttpAdapter
154154
)
155155
if isinstance(adapter, BaseAdapter):

0 commit comments

Comments
 (0)