Export Apogée: export des zéros. (vérifier si effet de bord indésirable?).

This commit is contained in:
Emmanuel Viennet 2022-01-31 23:15:42 +01:00
parent 911937f5a5
commit 0d7a369b8b
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ APO_NEWLINE = "\r\n"
def _apo_fmt_note(note):
"Formatte une note pour Apogée (séparateur décimal: ',')"
if not note and isinstance(note, float):
return ""
# if not note and isinstance(note, float): changé le 31/1/2022, étrange ?
# return ""
try:
val = float(note)
except ValueError: