(depth: int, n: int)
| 216 | |
| 217 | |
| 218 | def _list_number(depth: int, n: int) -> str: |
| 219 | if depth == 0: |
| 220 | return str(n) |
| 221 | if depth == 1: |
| 222 | return _to_letters(n) |
| 223 | if depth == 2: |
| 224 | return _to_roman(n) |
| 225 | return str(n) |
| 226 | |
| 227 | |
| 228 | def _to_letters(n: int) -> str: |
no test coverage detected