Browse Source
flags: support accessing flag value instances on the class
Fixes #4023
pull/4024/head
Io Mintz
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
discord/flags.py
|
|
@ -35,11 +35,16 @@ class flag_value: |
|
|
|
self.__doc__ = func.__doc__ |
|
|
|
|
|
|
|
def __get__(self, instance, owner): |
|
|
|
if instance is None: |
|
|
|
return self |
|
|
|
return instance._has_flag(self.flag) |
|
|
|
|
|
|
|
def __set__(self, instance, value): |
|
|
|
instance._set_flag(self.flag, value) |
|
|
|
|
|
|
|
def __repr__(self): |
|
|
|
return '<flag_value flag={.flag!r}>'.format(self) |
|
|
|
|
|
|
|
def fill_with_flags(*, inverted=False): |
|
|
|
def decorator(cls): |
|
|
|
cls.VALID_FLAGS = { |
|
|
|