(length: int)
| 523 | max_width = OPTIONS["display_width"] |
| 524 | |
| 525 | def prefixes(length: int) -> list[str]: |
| 526 | if length in (0, 1): |
| 527 | return [" "] |
| 528 | |
| 529 | return ["┌"] + ["│"] * max(length - 2, 0) + ["└"] |
| 530 | |
| 531 | preformatted = [ |
| 532 | pretty_print(f" {prefix} {name}", col_width) |
no outgoing calls
no test coverage detected
searching dependent graphs…