Remove VerificationLevel aliases

This commit is contained in:
Stanisław Jelnicki
2021-05-26 02:51:08 +02:00
committed by GitHub
parent 36cf3c94b4
commit 67aabc3230
2 changed files with 6 additions and 22 deletions

View File

@ -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