Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion sdks/python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading