Skip to content

Commit

Permalink
Hit the spacebar one time (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfowers authored Aug 9, 2024
1 parent c6039ac commit 1c69f36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/turnkeyml/cli/spawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def dict_arg(key: str, value: Dict):
def sequence_arg(value: Sequence) -> Dict[str, Dict[str, str]]:
result = ""
for tool, args in value.info.items():
result = result + f"{tool} {' '.join(args)}"
result = result + f"{tool} {' '.join(args)} "

return result

Expand Down
2 changes: 1 addition & 1 deletion src/turnkeyml/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.4"
__version__ = "3.0.5"
2 changes: 2 additions & 0 deletions test/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,8 @@ def test_015_cli_process_isolation(self):
"--process-isolation",
"discover",
"export-pytorch",
"--opset",
"17",
"optimize-ort",
"benchmark",
]
Expand Down

0 comments on commit 1c69f36

Please sign in to comment.