(self)
| 197 | self._level += 1 |
| 198 | |
| 199 | def _dedent(self): |
| 200 | self._current_indent -= self._indent_increment |
| 201 | assert self._current_indent >= 0, 'Indent decreased below 0.' |
| 202 | self._level -= 1 |
| 203 | |
| 204 | class _Section(object): |
| 205 |
no outgoing calls
no test coverage detected