diff options
author | robot-brewer <robot-brewer@yandex-team.com> | 2024-10-24 09:06:57 +0300 |
---|---|---|
committer | robot-brewer <robot-brewer@yandex-team.com> | 2024-10-24 09:19:34 +0300 |
commit | 0bb24f744b14da1f9afe0c8a2f8675d6ed3ba578 (patch) | |
tree | 0b8adfcb39bce1bee66f3a03b2316772568c04f8 /build/scripts/extract_docs.py | |
parent | b5de966122980444f495696a79c988be76ccad99 (diff) | |
download | ydb-0bb24f744b14da1f9afe0c8a2f8675d6ed3ba578.tar.gz |
Release python3-frozen #10
https://github.com/yandex/toolchain-registry/releases/tag/python3-frozen-v10
commit_hash:c15fdff831efa24ba1f6711307408dd1c7a46b91
Diffstat (limited to 'build/scripts/extract_docs.py')
-rw-r--r-- | build/scripts/extract_docs.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/scripts/extract_docs.py b/build/scripts/extract_docs.py index 5bf19f8866..8ab835b720 100644 --- a/build/scripts/extract_docs.py +++ b/build/scripts/extract_docs.py @@ -1,9 +1,13 @@ import argparse import os -import process_command_files as pcf import tarfile import sys +# Explicitly enable local imports +# Don't forget to add imported scripts to inputs of the calling command! +sys.path.append(os.path.dirname(os.path.abspath(__file__))) +import process_command_files as pcf + def parse_args(): parser = argparse.ArgumentParser() |