Reformat Python code using settings in pyproject.toml.
(outdir)
| 103 | |
| 104 | |
| 105 | def reformat_code(outdir): |
| 106 | """Reformat Python code using settings in pyproject.toml.""" |
| 107 | |
| 108 | subprocess.call(["ruff", "format", *make_paths(outdir)]) |
| 109 | |
| 110 | |
| 111 | def perform_codegen(outdir, noformat=False): |
no test coverage detected