(self, msg: str)
| 695 | |
| 696 | class Printer: |
| 697 | def sec(self, msg: str) -> None: |
| 698 | print() |
| 699 | print("=" * 10, msg, "=" * 10) |
| 700 | |
| 701 | def step(self, msg: str) -> None: |
| 702 | print("-" * 5, "step " + msg, "-" * 5) |
no outgoing calls
no test coverage detected