(self, section, end=None)
| 158 | section.style.new_line() |
| 159 | |
| 160 | def _end_nested_param(self, section, end=None): |
| 161 | section.style.dedent() |
| 162 | section.style.dedent() |
| 163 | section.style.new_line() |
| 164 | if end is not None: |
| 165 | section.write(end) |
| 166 | |
| 167 | def _end_structure(self, section, start, end): |
| 168 | # If there are no members in the strucuture, then make sure the |
no test coverage detected