Browse Source

Allow creating an Intent through a passed integer value

pull/7956/head
Rapptz 3 years ago
parent
commit
ef20264b1c
  1. 4
      discord/flags.py

4
discord/flags.py

@ -505,8 +505,8 @@ class Intents(BaseFlags):
__slots__ = ()
def __init__(self, **kwargs: bool) -> None:
self.value: int = self.DEFAULT_VALUE
def __init__(self, value: int = 0, **kwargs: bool) -> None:
self.value: int = value
for key, value in kwargs.items():
if key not in self.VALID_FLAGS:
raise TypeError(f'{key!r} is not a valid flag name.')

Loading…
Cancel
Save