Browse Source
Fix typings of deaf and mute in PartialMember
pull/8135/head
Kile
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
discord/types/member.py
|
|
@ -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): |
|
|
|