backend/dock_checker/utils/choices.py

10 lines
289 B
Python
Raw Permalink Normal View History

2023-06-25 03:26:59 +03:00
from collections.abc import Iterable
from django.db.models.enums import ChoicesMeta
def count_max_length(choices: Iterable | ChoicesMeta):
if isinstance(choices, ChoicesMeta):
return max([len(val) for val in choices.values])
return max([len(val) for val, _ in choices])