(path: Path)
| 545 | |
| 546 | |
| 547 | def display_path(path: Path) -> str: |
| 548 | try: |
| 549 | return str(path.relative_to(ROOT_DIR)) |
| 550 | except ValueError: |
| 551 | return str(path) |
| 552 | |
| 553 | |
| 554 | def env_flag(name: str) -> bool | None: |
no outgoing calls
no test coverage detected