Check Python code using settings in pyproject.toml.
(outdir)
| 97 | |
| 98 | |
| 99 | def lint_code(outdir): |
| 100 | """Check Python code using settings in pyproject.toml.""" |
| 101 | |
| 102 | subprocess.call(["ruff", "check", *make_paths(outdir)]) |
| 103 | |
| 104 | |
| 105 | def reformat_code(outdir): |