diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-07-05 12:35:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 12:35:57 +0000 |
commit | 20de685a4b500212d19acda5f637d51a8dd6be4e (patch) | |
tree | cb4ede58d67fc349a4c783b99eb178bd28e061cb /scripts-dev | |
parent | Allow enabling sliding sync per-user (#17393) (diff) | |
download | synapse-20de685a4b500212d19acda5f637d51a8dd6be4e.tar.xz |
Bump ruff from 0.3.7 to 0.5.0 (#17381)
Diffstat (limited to 'scripts-dev')
-rwxr-xr-x | scripts-dev/lint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/lint.sh b/scripts-dev/lint.sh index 9e4ed3246e..8acf0a6fb8 100755 --- a/scripts-dev/lint.sh +++ b/scripts-dev/lint.sh @@ -112,7 +112,7 @@ python3 -m black "${files[@]}" # Catch any common programming mistakes in Python code. # --quiet suppresses the update check. -ruff --quiet --fix "${files[@]}" +ruff check --quiet --fix "${files[@]}" # Catch any common programming mistakes in Rust code. # |