diff options
| author | snermolaev <[email protected]> | 2025-08-22 08:04:31 +0300 |
|---|---|---|
| committer | snermolaev <[email protected]> | 2025-08-22 08:24:42 +0300 |
| commit | 1c2d94d9a56e5049b1746d43235ef6b9d8b979a4 (patch) | |
| tree | dd7353935627b19b5a133aa7209a8e1dd919b383 /build/scripts/copy_docs_files.py | |
| parent | aec089e50cdfb77eb658e2d18fce27823ca8247a (diff) | |
fix linter reports for build/scripts/copy_docs_files.py
commit_hash:d8d98cc2b334c46acf2ad866b861ccada86494d6
Diffstat (limited to 'build/scripts/copy_docs_files.py')
| -rw-r--r-- | build/scripts/copy_docs_files.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scripts/copy_docs_files.py b/build/scripts/copy_docs_files.py index 2428b5fddf9..0a21c2e0b4f 100644 --- a/build/scripts/copy_docs_files.py +++ b/build/scripts/copy_docs_files.py @@ -2,13 +2,13 @@ import argparse import codecs import errno import os +import shutil 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 -import shutil +import process_command_files as pcf # noqa: E402 def parse_args(): |
