aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins/yql_python_udf.py
diff options
context:
space:
mode:
authorvvvv <vvvv@yandex-team.ru>2022-02-10 16:46:34 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:34 +0300
commitad94e93a059747f4fc3d7add88d1a83daf40b733 (patch)
tree731d57e580bd143e1136e7747f13b26e6bac95d0 /build/plugins/yql_python_udf.py
parent298c6da79f1d8f35089a67f463f0b541bec36d9b (diff)
downloadydb-ad94e93a059747f4fc3d7add88d1a83daf40b733.tar.gz
Restoring authorship annotation for <vvvv@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/yql_python_udf.py')
-rw-r--r--build/plugins/yql_python_udf.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/plugins/yql_python_udf.py b/build/plugins/yql_python_udf.py
index c4f949d8a9..6676df38d0 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: