Wrap object name in reference link.
(self, value: str, path: str)
| 49 | self.paths = paths |
| 50 | |
| 51 | def linked_obj(self, value: str, path: str) -> str: |
| 52 | """ Wrap object name in reference link. """ |
| 53 | return f'[`{value}`][{path}.{value}]' |
| 54 | |
| 55 | def on_function_instance(self, node: ast.AST | ObjectNode, func: Function, agent: Visitor | Inspector, **kwargs: Any) -> None: # noqa: ARG002 |
| 56 | """Add table to specified function docstrings.""" |
no outgoing calls
no test coverage detected