Browse Source

Fix utils.MISSING not evaluating to True in implicit bool contexts

pull/6823/head
Rapptz 4 years ago
parent
commit
7b8db49efe
  1. 3
      discord/utils.py

3
discord/utils.py

@ -83,6 +83,9 @@ class _MissingSentinel:
def __eq__(self, other):
return False
def __bool__(self):
return False
def __repr__(self):
return '...'

Loading…
Cancel
Save