diff options
author | vvvv <[email protected]> | 2022-02-10 16:46:37 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:37 +0300 |
commit | a693106aae8a3a3c7236a4ae953058a9611d7a92 (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /build/plugins/yql_python_udf.py | |
parent | ad94e93a059747f4fc3d7add88d1a83daf40b733 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'build/plugins/yql_python_udf.py')
-rw-r--r-- | build/plugins/yql_python_udf.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/plugins/yql_python_udf.py b/build/plugins/yql_python_udf.py index 6676df38d07..c4f949d8a94 100644 --- a/build/plugins/yql_python_udf.py +++ b/build/plugins/yql_python_udf.py @@ -15,10 +15,10 @@ def onregister_yql_python_udf(unit, *args): add_libra_modules = get_or_default(kv, 'ADD_LIBRA_MODULES', 'no') == 'yes' use_arcadia_python = unit.get('USE_ARCADIA_PYTHON') == 'yes' - py3 = unit.get('PYTHON3') == 'yes' + py3 = unit.get('PYTHON3') == 'yes' - unit.onyql_abi_version(['2', '9', '0']) - unit.onpeerdir(['yql/udfs/common/python/python_udf']) + unit.onyql_abi_version(['2', '9', '0']) + unit.onpeerdir(['yql/udfs/common/python/python_udf']) unit.onpeerdir(['ydb/library/yql/public/udf']) if add_libra_modules: @@ -29,9 +29,9 @@ def onregister_yql_python_udf(unit, *args): flavor = 'Arcadia' unit.onpeerdir([ 'library/python/runtime', - 'yql/udfs/common/python/main' - ] if not py3 else [ - 'library/python/runtime_py3', + 'yql/udfs/common/python/main' + ] if not py3 else [ + 'library/python/runtime_py3', 'yql/udfs/common/python/main_py3' ]) else: |