From 93d9002668d656da0cbf508e2fa2b0489bcc36a4 Mon Sep 17 00:00:00 2001 From: jrmccluskey Date: Tue, 28 Apr 2026 13:23:29 -0400 Subject: [PATCH] Rename run_pylint.sh --- sdks/python/scripts/{run_pylint.sh => run_lint.sh} | 6 +++--- sdks/python/tox.ini | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename sdks/python/scripts/{run_pylint.sh => run_lint.sh} (96%) diff --git a/sdks/python/scripts/run_pylint.sh b/sdks/python/scripts/run_lint.sh similarity index 96% rename from sdks/python/scripts/run_pylint.sh rename to sdks/python/scripts/run_lint.sh index a9a0b0ec50d5..58d75cd7bace 100755 --- a/sdks/python/scripts/run_pylint.sh +++ b/sdks/python/scripts/run_lint.sh @@ -16,10 +16,10 @@ # limitations under the License. # -# This script will run pylint and pep8 on all module files. +# This script will run ruff and isort on all module files. # -# Use "pylint apache_beam" to run pylint all files. -# Use "pep8 apache_beam" to run pep8 all files. +# Use "ruff check apache_beam" to run ruff all files. +# Use "isort apache_beam" to run isort all files. # # The exit-code of the script indicates success or a failure. diff --git a/sdks/python/tox.ini b/sdks/python/tox.ini index d832a54977d9..03ce3feef84b 100644 --- a/sdks/python/tox.ini +++ b/sdks/python/tox.ini @@ -198,7 +198,7 @@ extras = dev commands = ruff --version - time {toxinidir}/scripts/run_pylint.sh + time {toxinidir}/scripts/run_lint.sh pyrefly --version time python setup.py pyrefly