Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Aug 28, 2024
1 parent 04a2795 commit d707b6a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_cli_serial.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ def run_main_with_arguments(arguments: list) -> tuple:
)
main_file_path = str(os.path.abspath(main_file_path))

print(f"__main__.py file path: {main_file_path}", [sys.executable, main_file_path] + arguments)
print(
f"__main__.py file path: {main_file_path}",
[sys.executable, main_file_path] + arguments,
)
commands = [sys.executable, main_file_path] + arguments
commands = [str(command) for command in commands]

Expand Down

0 comments on commit d707b6a

Please sign in to comment.