formatting fix
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user