Skip to content

Commit 0db7eb9

Browse files
Potential fix for code scanning alert no. 120: Mismatch in multiple assignment
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 513f624 commit 0db7eb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/seclab_taskflow_agent/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def parse_prompt_args(available_tools: AvailableTools,
9191
for g in args[0].globals:
9292
if '=' not in g:
9393
logging.error(f"Invalid global variable format: {g}. Expected KEY=VALUE")
94-
return None, None, None, None, help_msg
94+
return None, None, None, None, None, help_msg
9595
key, value = g.split('=', 1)
9696
cli_globals[key.strip()] = value.strip()
9797

0 commit comments

Comments
 (0)