Skip to content

Commit 588eefa

Browse files
author
Harmanpreet Kaur
committed
edit2
1 parent 1dff194 commit 588eefa

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)