kadenios/shared/utils.py

10 lines
321 B
Python
Raw Normal View History

# #############################################################################
# Fonctions universelles
# #############################################################################
def choices_length(choices):
"""Renvoie la longueur maximale des choix de choices"""
2024-07-10 13:52:24 +02:00
return max(len(c[0]) for c in choices)