summary refs log tree commit diff
path: root/scripts-dev
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-07-05 12:35:57 +0000
committerGitHub <noreply@github.com>2024-07-05 12:35:57 +0000
commit20de685a4b500212d19acda5f637d51a8dd6be4e (patch)
treecb4ede58d67fc349a4c783b99eb178bd28e061cb /scripts-dev
parentAllow enabling sliding sync per-user (#17393) (diff)
downloadsynapse-20de685a4b500212d19acda5f637d51a8dd6be4e.tar.xz
Bump ruff from 0.3.7 to 0.5.0 (#17381)
Diffstat (limited to 'scripts-dev')
-rwxr-xr-xscripts-dev/lint.sh2
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.
 #