Skip to content

Commit 1c69f36

Browse files
authored
Hit the spacebar one time (#212)
1 parent c6039ac commit 1c69f36

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/turnkeyml/cli/spawn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def dict_arg(key: str, value: Dict):
182182
def sequence_arg(value: Sequence) -> Dict[str, Dict[str, str]]:
183183
result = ""
184184
for tool, args in value.info.items():
185-
result = result + f"{tool} {' '.join(args)}"
185+
result = result + f"{tool} {' '.join(args)} "
186186

187187
return result
188188

src/turnkeyml/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.4"
1+
__version__ = "3.0.5"

test/cli.py

+2
Original file line numberDiff line numberDiff line change
@@ -662,6 +662,8 @@ def test_015_cli_process_isolation(self):
662662
"--process-isolation",
663663
"discover",
664664
"export-pytorch",
665+
"--opset",
666+
"17",
665667
"optimize-ort",
666668
"benchmark",
667669
]

0 commit comments

Comments
 (0)