aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/find_root
diff options
context:
space:
mode:
authorexprmntr <exprmntr@yandex-team.ru>2022-02-10 16:46:50 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:50 +0300
commit078ddb2fb76387cae14e8c3ceb5a896009a5a539 (patch)
treedda2d61bf8f818c76b5602b79366b5fcbcf2e479 /library/python/find_root
parent5085152b94bf621933243a498def7f37d2e76b58 (diff)
downloadydb-078ddb2fb76387cae14e8c3ceb5a896009a5a539.tar.gz
Restoring authorship annotation for exprmntr <exprmntr@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/python/find_root')
-rw-r--r--library/python/find_root/__init__.py2
-rw-r--r--library/python/find_root/ya.make2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/python/find_root/__init__.py b/library/python/find_root/__init__.py
index 6da604d62e..d77c54dd88 100644
--- a/library/python/find_root/__init__.py
+++ b/library/python/find_root/__init__.py
@@ -2,7 +2,7 @@ import os
def is_root(path):
- return os.path.exists(os.path.join(path, ".arcadia.root")) or os.path.exists(os.path.join(path, 'devtools', 'ya', 'ya.conf.json'))
+ return os.path.exists(os.path.join(path, ".arcadia.root")) or os.path.exists(os.path.join(path, 'devtools', 'ya', 'ya.conf.json'))
def detect_root(path, detector=is_root):
diff --git a/library/python/find_root/ya.make b/library/python/find_root/ya.make
index beaa8e3c52..60876210e6 100644
--- a/library/python/find_root/ya.make
+++ b/library/python/find_root/ya.make
@@ -1,4 +1,4 @@
-PY23_LIBRARY()
+PY23_LIBRARY()
OWNER(g:yatool)