(self, path: Path)
| 784 | return Path(tmp_file.name) |
| 785 | |
| 786 | def _read_file(self, path: Path) -> str: |
| 787 | if not path.exists(): |
| 788 | error(f'Could not find file {path}') |
| 789 | sys.exit(1) |
| 790 | |
| 791 | return path.read_text() |
| 792 | |
| 793 | def _cleanup_config(self, config: Namespace | dict[str, Any]) -> dict[str, Any]: |
| 794 | clean_args = {} |
no test coverage detected