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