-
-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid type hinting in initial_channels #460
Comments
Hello! Thanks for the issue. If this is a general help question, for a faster response consider joining the official Discord Server Else if you have an issue with the library please wait for someone to help you here. |
junah201
added a commit
to junah201/TwitchIO
that referenced
this issue
Jul 2, 2024
8 tasks
junah201
added a commit
to junah201/TwitchIO
that referenced
this issue
Jul 2, 2024
junah201
added a commit
to junah201/TwitchIO
that referenced
this issue
Jul 3, 2024
junah201
added a commit
to junah201/TwitchIO
that referenced
this issue
Jul 3, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was just curious about TwitchIO's internal code implementation and happened to stumble upon an incorrect type hint.
The type of initial_channels in WSConnection is actually
Union[list, tuple, Callable]
, but it isList[str]
.The text was updated successfully, but these errors were encountered: