Fix typings of deaf and mute in PartialMember

This commit is contained in:
Kile 2022-06-10 06:40:33 +01:00 committed by GitHub
parent be6db20255
commit 66a97c6655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,8 +34,8 @@ class Nickname(TypedDict):
class PartialMember(TypedDict):
roles: SnowflakeList
joined_at: str
deaf: str
mute: str
deaf: bool
mute: bool
class Member(PartialMember, total=False):