Fix remaining type errors in main package

This doesn't fix the type errors in the ext packages though.
This commit is contained in:
Rapptz
2022-02-22 04:19:46 -05:00
parent 3e90664cf9
commit 8d52ddaff6
3 changed files with 9 additions and 9 deletions

View File

@ -736,7 +736,7 @@ class DiscordWebSocket:
async def voice_state(
self,
guild_id: int,
channel_id: int,
channel_id: Optional[int],
self_mute: bool = False,
self_deaf: bool = False,
) -> None: