diff options
| author | Rapptz <[email protected]> | 2018-11-25 01:42:33 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-11-25 01:42:33 -0500 |
| commit | 8b18fa307b5e4a9acc6c057b7489c4d11de359b4 (patch) | |
| tree | e902b8be505c34a814823020cc7a4091e6db7ac9 /discord/enums.py | |
| parent | Support webp in _get_mime_type_for_image (diff) | |
| download | discord.py-8b18fa307b5e4a9acc6c057b7489c4d11de359b4.tar.xz discord.py-8b18fa307b5e4a9acc6c057b7489c4d11de359b4.zip | |
Add support for default notification level in audit logs and Guild.edit
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/enums.py b/discord/enums.py index 55d1c73c..a1ebab8b 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -123,7 +123,7 @@ class RelationshipType(Enum): incoming_request = 3 outgoing_request = 4 -class NotificationLevel(Enum): +class NotificationLevel(IntEnum): all_messages = 0 only_mentions = 1 |