aboutsummaryrefslogtreecommitdiff
path: root/gn3
diff options
context:
space:
mode:
Diffstat (limited to 'gn3')
-rw-r--r--gn3/commands.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gn3/commands.py b/gn3/commands.py
index 7a4eb48..7287348 100644
--- a/gn3/commands.py
+++ b/gn3/commands.py
@@ -20,9 +20,9 @@ def compose_gemma_cmd(
"""Compose a valid GEMMA command given the correct values"""
cmd = f"{gemma_wrapper_cmd} --json"
if gemma_wrapper_kwargs:
- cmd += (" " # Add extra space between commands
- " ".join([f"--{key} {val}" for key, val
- in gemma_wrapper_kwargs.items()]))
+ cmd += " " # Add extra space between commands
+ cmd += " ".join([f"--{key} {val}" for key, val
+ in gemma_wrapper_kwargs.items()])
cmd += " -- "
if gemma_kwargs:
cmd += " ".join([f"-{key} {val}"