diff options
author | iaz1607 <iaz1607@yandex-team.com> | 2023-11-30 12:16:39 +0300 |
---|---|---|
committer | iaz1607 <iaz1607@yandex-team.com> | 2023-11-30 12:56:46 +0300 |
commit | 8951ddf780e02616cdb2ec54a02bc354e8507c0f (patch) | |
tree | 478097488957d3b554e25868c972a959bb40d78e /build/scripts/copy_docs_files.py | |
parent | a5acb7aa4ca5a4603215e878eb0cad786793262b (diff) | |
download | ydb-8951ddf780e02616cdb2ec54a02bc354e8507c0f.tar.gz |
`build/scripts` ya style --py
Diffstat (limited to 'build/scripts/copy_docs_files.py')
-rw-r--r-- | build/scripts/copy_docs_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/copy_docs_files.py b/build/scripts/copy_docs_files.py index c444dd509d..361932bfe2 100644 --- a/build/scripts/copy_docs_files.py +++ b/build/scripts/copy_docs_files.py @@ -94,7 +94,7 @@ def main(): dst_file = os.path.join(dst_dir, f) if src_file == dst_file: continue - rel_path = src_file[len(root):] if is_from_source_root else None + rel_path = src_file[len(root) :] if is_from_source_root else None copy_file(src_file, dst_file, overwrite=is_overwrite_existing, orig_path=rel_path) |