We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc8fde commit 03bc170Copy full SHA for 03bc170
2 files changed
sdks/python/scripts/run_pylint.sh sdks/python/scripts/run_lint.shsdks/python/scripts/run_pylint.sh renamed to sdks/python/scripts/run_lint.sh
@@ -16,10 +16,10 @@
16
# limitations under the License.
17
#
18
19
-# This script will run pylint and pep8 on all module files.
+# This script will run ruff and isort on all module files.
20
21
-# Use "pylint apache_beam" to run pylint all files.
22
-# 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.
23
24
# The exit-code of the script indicates success or a failure.
25
sdks/python/tox.ini
@@ -198,7 +198,7 @@ extras =
198
dev
199
commands =
200
ruff --version
201
- time {toxinidir}/scripts/run_pylint.sh
+ time {toxinidir}/scripts/run_lint.sh
202
pyrefly --version
203
time python setup.py pyrefly
204
0 commit comments