Skip to content

Commit

Permalink
Minor fix by removing extra blanked space
Browse files Browse the repository at this point in the history
  • Loading branch information
rquidute committed Dec 13, 2023
1 parent e9b4bb4 commit fb92941
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def generate_command_arguments(
# Retrieve arguments from test_parameters
if test_parameters:
for name, value in test_parameters.items():
arg_value = str(value) if str(value) != "" else " "
arg_value = str(value) if str(value) != "" else ""
arguments.append(f"--{name} {str(arg_value)}")

return arguments
Expand Down

0 comments on commit fb92941

Please sign in to comment.