kadenios/shared/utils.py

12 lines
352 B
Python
Raw Normal View History

# #############################################################################
# Fonctions universelles
# #############################################################################
def choices_length(choices):
"""Renvoie la longueur maximale des choix de choices"""
m = 0
for c in choices:
m = max(m, len(c[0]))
return m