| 12 | |
| 13 | |
| 14 | class Command: |
| 15 | def __init__(self, setup: Callable[[], None], command: Callable[[], None]) -> None: |
| 16 | self.setup = setup |
| 17 | self.command = command |
| 18 | |
| 19 | |
| 20 | def print_offset(text: str, indent_length: int = 4) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…