money amount validation funktion mit erklärendem kommentar versehen

This commit is contained in:
David Kilias 2020-12-06 21:37:18 +01:00
parent 6758bb5a44
commit fee14d9349

View file

@ -24,6 +24,7 @@ def iso_date(field, value, error):
def valid_money_amount(field, value, error): def valid_money_amount(field, value, error):
try: try:
# value is string, check formatting by parsing as float
float(value) float(value)
return True return True
except (ValueError, TypeError): except (ValueError, TypeError):