summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnermolaev <[email protected]>2025-08-22 09:18:41 +0300
committersnermolaev <[email protected]>2025-08-22 09:32:25 +0300
commitb49ea71f549a0fbb199857d27c96983f7dcdd4c1 (patch)
tree4559ad5c9d9ff21c2f50f7b4a66037fb32de9088
parentd381de4cbd2212312fb4a1a056f864743457a294 (diff)
fix linter reports for build/scripts/compile_java.py
commit_hash:b8e331f74518106d63b5be296355b75242b93bfc
-rw-r--r--build/scripts/compile_java.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scripts/compile_java.py b/build/scripts/compile_java.py
index 995ce625db3..191b6a4f1b4 100644
--- a/build/scripts/compile_java.py
+++ b/build/scripts/compile_java.py
@@ -11,8 +11,8 @@ 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 java_command_file as jcf
+import process_command_files as pcf # noqa: E402
+import java_command_file as jcf # noqa: E402
def parse_args(args):