(self)
| 54 | self._data = join([self._data, '\n']) |
| 55 | |
| 56 | def list_depth(self): |
| 57 | if self._data.strip()[-1:] != '\n' or self._list_depth == 0: |
| 58 | return '' |
| 59 | return join([' ' * self._list_depth]) |
| 60 | |
| 61 | def separator(self): |
| 62 | self._data = join([self._data, '\n---\n']) |
no test coverage detected