eienmojiki commited on
Commit
44e7605
·
1 Parent(s): 8d3757d
Files changed (1) hide show
  1. utils/tool_manager.py +1 -1
utils/tool_manager.py CHANGED
@@ -115,7 +115,7 @@ def format_docstring_as_markdown(docstring: str | None) -> str:
115
 
116
  # Format as a list item (-) with inline code (`) for the name/type part
117
  # and regular text for the description.
118
- formatted_line = f"- `` `{name_type_part}` ``: {description_part}"
119
  formatted_lines.append(formatted_line)
120
 
121
  elif in_params_section and ':' not in line and stripped_line:
 
115
 
116
  # Format as a list item (-) with inline code (`) for the name/type part
117
  # and regular text for the description.
118
+ formatted_line = f"- `{name_type_part}` : {description_part}"
119
  formatted_lines.append(formatted_line)
120
 
121
  elif in_params_section and ':' not in line and stripped_line: