if consigne is None
This commit is contained in:
parent
229f2097fd
commit
c0dc5c7be3
@ -17,13 +17,13 @@ MAX_LENGTH = {
|
||||
|
||||
def Csv_generator(path, nb_in_serie, nb_page, police, consigne, writer):
|
||||
exo_exemple = generate_from_path(path, 1, 'csv')
|
||||
if len(consigne) < MAX_LENGTH[police] and len(consigne) > len(exo_exemple):
|
||||
if consigne is not None and len(consigne) < MAX_LENGTH[police] and len(consigne) > len(exo_exemple):
|
||||
longueur_max = len(consigne) + 5
|
||||
elif len(consigne) > MAX_LENGTH[police] and len(consigne) > len(exo_exemple):
|
||||
elif consigne is not None and len(consigne) > MAX_LENGTH[police] and len(consigne) > len(exo_exemple):
|
||||
longueur_max = MAX_LENGTH[police]
|
||||
elif len(consigne) > MAX_LENGTH[police] and len(consigne) < len(exo_exemple):
|
||||
elif consigne is not None and len(consigne) > MAX_LENGTH[police] and len(consigne) < len(exo_exemple):
|
||||
longueur_max = len(exo_exemple)
|
||||
elif len(consigne) < MAX_LENGTH[police] and len(consigne) < len(exo_exemple):
|
||||
elif consigne is not None and len(consigne) < MAX_LENGTH[police] and len(consigne) < len(exo_exemple):
|
||||
longueur_max = len(exo_exemple)
|
||||
else:
|
||||
longueur_max = len(exo_exemple)
|
||||
|
Loading…
Reference in New Issue
Block a user