1 2 3 4
def pluralize(text: str, count: int) -> str: if count == 1: return text return f"{text}s"
Generated by nedoc v0.10 at 2025-01-16 08:54