(cmd: code_writer_cmd)
| 61 | |
| 62 | |
| 63 | def run(cmd: code_writer_cmd): |
| 64 | i = 0 |
| 65 | for file in sa_path.glob("**/*_cy.py"): |
| 66 | run_file(cmd, file) |
| 67 | i += 1 |
| 68 | cmd.write_status(f"\nDone. Processed {i} files.") |
| 69 | |
| 70 | |
| 71 | if __name__ == "__main__": |
no test coverage detected