diff options
| author | Stanisław Jelnicki <[email protected]> | 2021-05-26 02:51:08 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-25 20:51:08 -0400 |
| commit | 67aabc3230b1c94d36d002ba7371dcef7e11f549 (patch) | |
| tree | 9c081012ae76f239495c81e05115a1e85efc4482 /discord/enums.py | |
| parent | [commands] Remove Bot.self_bot (diff) | |
| download | discord.py-67aabc3230b1c94d36d002ba7371dcef7e11f549.tar.xz discord.py-67aabc3230b1c94d36d002ba7371dcef7e11f549.zip | |
Remove VerificationLevel aliases
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/discord/enums.py b/discord/enums.py index 5f6a599b..1fc0b29e 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -225,14 +225,11 @@ class SpeakingState(Enum): return self.value class VerificationLevel(Enum): - none = 0 - low = 1 - medium = 2 - high = 3 - table_flip = 3 - extreme = 4 - double_table_flip = 4 - very_high = 4 + none = 0 + low = 1 + medium = 2 + high = 3 + highest = 4 def __str__(self): return self.name |