(s: int | Sized)
| 918 | |
| 919 | |
| 920 | def plural_s(s: int | Sized) -> str: |
| 921 | count = s if isinstance(s, int) else len(s) |
| 922 | if count != 1: |
| 923 | return "s" |
| 924 | else: |
| 925 | return "" |
| 926 | |
| 927 | |
| 928 | def quote_docstring(docstr: str) -> str: |
searching dependent graphs…