(self)
| 214 | self._level += 1 |
| 215 | |
| 216 | def _dedent(self): |
| 217 | self._current_indent -= self._indent_increment |
| 218 | assert self._current_indent >= 0, 'Indent decreased below 0.' |
| 219 | self._level -= 1 |
| 220 | |
| 221 | class _Section(object): |
| 222 |
no outgoing calls
no test coverage detected