fix: age formatting

This commit is contained in:
moanos [he/him] 2024-08-08 17:01:54 +02:00
parent f8ca384b41
commit 05d56e278d

View File

@ -15,7 +15,7 @@ def age_as_hr_string(age: datetime.timedelta) -> str:
months = age.days/30
years = age.days/365
if years >= 1:
return f'{years:.0f} Jahr{pluralize(years)} und {months:.0} Monat{pluralize(months)}'
return f'{years:.0f} Jahr{pluralize(years)} und {months:.0f} Monat{pluralize(months)}'
elif months >= 3:
return f'{months:.0f} Monat{pluralize(months)}'
elif weeks >= 3: