Coverage for src/pullapprove/text.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-08-17 21:57 -0500

1"""Small helpers for the text PullApprove prints.""" 

2 

3from __future__ import annotations 

4 

5 

6def plural(n: int, word: str) -> str: 

7 """`word`, spelled for a count of `n`.""" 

8 return word if n == 1 else word + "s"