(name, description, indent=2)
| 558 | |
| 559 | |
| 560 | def _CreateItem(name, description, indent=2): |
| 561 | if not description: |
| 562 | return name |
| 563 | description = formatting.Indent(description, indent) |
| 564 | return f"""{name} |
| 565 | {description}""" |
| 566 | |
| 567 | |
| 568 | def _GetArgDescription(name, docstring_info): |
no outgoing calls
no test coverage detected