TwitchIO
TwitchIO copied to clipboard
Invalid type hinting in initial_channels
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 is List[str]
.