Browse Source

Add return type for __init__

pull/7932/head
Harshal Laheri 3 years ago
committed by GitHub
parent
commit
89eb86ecdc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/abc.py

2
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))

Loading…
Cancel
Save