aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins/pybuild.py
diff options
context:
space:
mode:
authorsay <say@yandex-team.com>2023-12-15 13:47:02 +0300
committersay <say@yandex-team.com>2023-12-15 14:53:19 +0300
commitb9f3120d1622c2d8adf94c2002b69e7d051d4508 (patch)
tree056193d30fb337b511a522d6020850617bfe2818 /build/plugins/pybuild.py
parent518293d20122cb271e864f195625c5d3b6203937 (diff)
downloadydb-b9f3120d1622c2d8adf94c2002b69e7d051d4508.tar.gz
Rename py3_flake8 to flake8
Diffstat (limited to 'build/plugins/pybuild.py')
-rw-r--r--build/plugins/pybuild.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/plugins/pybuild.py b/build/plugins/pybuild.py
index 6c493fc346..23ace17669 100644
--- a/build/plugins/pybuild.py
+++ b/build/plugins/pybuild.py
@@ -172,8 +172,7 @@ def add_python_lint_checks(unit, py_ver, files):
flake8_cfg = 'build/config/tests/flake8/flake8.conf'
migrations_cfg = 'build/rules/flake8/migrations.yaml'
resource = "build/external_resources/flake8_py{}".format(py_ver)
- # TODO YA-1534: Replace py3_flake8 by flake8 after ya-bin release
- lint_name = "py2_flake8" if py_ver == 2 else "py3_flake8"
+ lint_name = "py2_flake8" if py_ver == 2 else "flake8"
params = [lint_name, "tools/flake8_linter/flake8_linter"]
params += ["FILES"] + resolved_files
params += ["GLOBAL_RESOURCES", resource]