(self, section)
| 77 | section.style.table_of_contents(title='Table of Contents', depth=2) |
| 78 | |
| 79 | def client_api(self, section): |
| 80 | examples = None |
| 81 | try: |
| 82 | examples = self.get_examples(self._service_name) |
| 83 | except DataNotFoundError: |
| 84 | pass |
| 85 | |
| 86 | ClientDocumenter( |
| 87 | self._client, self._root_docs_path, examples |
| 88 | ).document_client(section) |
| 89 | |
| 90 | def client_exceptions(self, section): |
| 91 | ClientExceptionsDocumenter( |
no test coverage detected