formatting fix

This commit is contained in:
klemek
2021-01-11 15:50:26 +01:00
parent 034562f167
commit 5563945dcc
4 changed files with 28 additions and 18 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ def aggregate(names: List[str]) -> str:
def plural(count: int, word: str) -> str:
return str(count) + " " + word + ("s" if count != 1 else "")
return f"{count:,} {word}{'s' if count != 1 else ''}"
# DATE FORMATTING