We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dff194 commit 588eefaCopy full SHA for 588eefa
src/backend/kernel_tools/marketing_tools.py
@@ -317,7 +317,7 @@ def generate_tools_json_doc(cls) -> str:
317
type_hints = get_type_hints(method)
318
319
# Process parameters
320
- for param_name in sig.parameters.items():
+ for param_name, param in sig.parameters.items():
321
# Skip first parameter 'cls' for class methods (though we're using staticmethod now)
322
if param_name in ["cls", "self"]:
323
continue
0 commit comments