Are we processing the top level of a file?
(self)
| 713 | self._output.append(string) |
| 714 | |
| 715 | def is_top_level(self) -> bool: |
| 716 | """Are we processing the top level of a file?""" |
| 717 | return self._indent == "" |
| 718 | |
| 719 | def indent(self) -> None: |
| 720 | """Add one level of indentation.""" |
no outgoing calls
no test coverage detected