Browse Source

Fix ArrayFlags._from_value not having an initial value

pull/8200/head
Rapptz 3 years ago
parent
commit
53a111872e
  1. 2
      discord/flags.py

2
discord/flags.py

@ -1468,7 +1468,7 @@ class ArrayFlags(BaseFlags):
@classmethod
def _from_value(cls: Type[Self], value: List[int]) -> Self:
self = cls.__new__(cls)
self.value = reduce(lambda a, b: a | (1 << b - 1), value)
self.value = reduce(lambda a, b: a | (1 << b - 1), value, 0)
return self
def to_array(self) -> List[int]:

Loading…
Cancel
Save