Harshal Laheri
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/abc.py
|
|
@ -300,7 +300,7 @@ class _Overwrites: |
|
|
|
ROLE = 0 |
|
|
|
MEMBER = 1 |
|
|
|
|
|
|
|
def __init__(self, data: PermissionOverwritePayload): |
|
|
|
def __init__(self, data: PermissionOverwritePayload) -> None: |
|
|
|
self.id: int = int(data['id']) |
|
|
|
self.allow: int = int(data.get('allow', 0)) |
|
|
|
self.deny: int = int(data.get('deny', 0)) |
|
|
|