Skip to content

Commit d5dce71

Browse files
committed
chore: format hermetic_build py files
1 parent bfddaa0 commit d5dce71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • sdk-platform-java/hermetic_build/library_generation/utils

sdk-platform-java/hermetic_build/library_generation/utils/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run_process_and_print_output(
6868
kwargs["stderr"] = subprocess.STDOUT
6969
proc_info = subprocess.run(arguments, stdout=subprocess.PIPE, **kwargs)
7070
print(proc_info.stdout.decode(), end="", flush=True)
71-
# If stderr was not specified and the process failed, print the error output
71+
# If stderr was not specified and the process failed, print the error output
7272
if proc_info.returncode != 0 and proc_info.stderr:
7373
print(proc_info.stderr.decode(), end="", flush=True)
7474
print(

0 commit comments

Comments
 (0)