(file: str, cmd: code_writer_cmd)
| 47 | |
| 48 | |
| 49 | def main(file: str, cmd: code_writer_cmd) -> None: |
| 50 | if file == "all": |
| 51 | operations: Iterable[Any] = files.items() |
| 52 | else: |
| 53 | operations = [(file, files[file])] |
| 54 | |
| 55 | for name, info in operations: |
| 56 | run_operation(name, info["source"], info["dest"], cmd) |
| 57 | |
| 58 | |
| 59 | files = { |
no test coverage detected