diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b15dd81..ddc0fbb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,7 +20,7 @@ repos: - id: pretty-format-yaml args: [--autofix] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.6 + rev: v0.9.2 hooks: # lint & attempt to correct failures - id: ruff diff --git a/dev/generate_makefile_targets_table.py b/dev/generate_makefile_targets_table.py index d1a6b1e..aaa16d8 100644 --- a/dev/generate_makefile_targets_table.py +++ b/dev/generate_makefile_targets_table.py @@ -32,7 +32,7 @@ def main(): f"| {'Target':{max_target_len}s} | {'Description':{max_description_len}s} |" ) cog.outl( - f"|{'-'*(max_target_len + 2)}|{'-'*(max_description_len + 2):{max_description_len}s}|" + f"|{'-' * (max_target_len + 2)}|{'-' * (max_description_len + 2):{max_description_len}s}|" ) for t in makefile_targets: # In GitHub Actions, we get superfluous targets like `make[1]`, so ignore those