perf: 去掉 debug

pull/11838/head
ibuler 2023-10-13 16:36:23 +08:00
parent b5714f7e14
commit d7ac08f6d9
1 changed files with 0 additions and 1 deletions

View File

@ -19,7 +19,6 @@ class ConfirmType(TextChoices):
def get_can_confirm_types(cls, confirm_type):
start = cls.values.index(confirm_type)
types = cls.values[start:]
types = [tp for tp in types if tp != 'password']
types.reverse()
return types