(self)
| 73 | return self._docstring |
| 74 | |
| 75 | def _create_docstring(self): |
| 76 | docstring_structure = DocumentStructure('docstring', target='html') |
| 77 | # Call the document method function with the args and kwargs |
| 78 | # passed to the class. |
| 79 | self._write_docstring( |
| 80 | docstring_structure, *self._gen_args, **self._gen_kwargs |
| 81 | ) |
| 82 | return docstring_structure.flush_structure().decode('utf-8') |
| 83 | |
| 84 | |
| 85 | class ClientMethodDocstring(LazyLoadedDocstring): |
no test coverage detected