Skip to content

Commit c876e6b

Browse files
Merge branch 'psl-backend-sk-unit-test' of https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator into psl-backend-sk-unit-test
2 parents 931a03b + 588eefa commit c876e6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/kernel_tools/marketing_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def generate_tools_json_doc(cls) -> str:
317317
type_hints = get_type_hints(method)
318318

319319
# Process parameters
320-
for param_name in sig.parameters.items():
320+
for param_name, param in sig.parameters.items():
321321
# Skip first parameter 'cls' for class methods (though we're using staticmethod now)
322322
if param_name in ["cls", "self"]:
323323
continue

0 commit comments

Comments
 (0)