(cmd: code_writer_cmd, update_year: bool)
| 48 | |
| 49 | |
| 50 | def run(cmd: code_writer_cmd, update_year: bool): |
| 51 | i = 0 |
| 52 | for ext in ("py", "pyx", "pxd"): |
| 53 | for file in sa_path.glob(f"**/*.{ext}"): |
| 54 | run_file(cmd, file, update_year) |
| 55 | i += 1 |
| 56 | cmd.write_status(f"\nDone. Processed {i} files.") |
| 57 | |
| 58 | |
| 59 | if __name__ == "__main__": |
no test coverage detected