diff options
author | say <say@yandex-team.com> | 2023-09-28 17:58:30 +0300 |
---|---|---|
committer | say <say@yandex-team.com> | 2023-09-28 18:39:04 +0300 |
commit | e1bf3a3e544c1895f0cbdca317f43740cc8cb6db (patch) | |
tree | 8823a8b17bd9188a08a0c3fcb0f902b0320da38b /build/plugins/pybuild.py | |
parent | 1b2cc051281e67c9b930068caaa1df1fc74e3c07 (diff) | |
download | ydb-e1bf3a3e544c1895f0cbdca317f43740cc8cb6db.tar.gz |
Move style configs from devtools to build directory
Diffstat (limited to 'build/plugins/pybuild.py')
-rw-r--r-- | build/plugins/pybuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/pybuild.py b/build/plugins/pybuild.py index 31683217e6..dfbc21da4f 100644 --- a/build/plugins/pybuild.py +++ b/build/plugins/pybuild.py @@ -189,7 +189,7 @@ def add_python_lint_checks(unit, py_ver, files): resolved_files = get_resolved_files() if resolved_files: black_cfg = ( - unit.get('STYLE_PYTHON_PYPROJECT_VALUE') or 'devtools/ya/handlers/style/python_style_config.toml' + unit.get('STYLE_PYTHON_PYPROJECT_VALUE') or 'build/config/tests/py_style/config.toml' ) params = ['black', 'tools/black_linter/black_linter'] params += ['FILES'] + resolved_files |