Returns True if the section buffer is empty, otherwise False.
(self)
| 137 | self.section = [] |
| 138 | |
| 139 | def is_section_empty(self) -> bool: |
| 140 | '''Returns True if the section buffer is empty, otherwise False.''' |
| 141 | return len(self.section) == 0 |
| 142 | |
| 143 | def head(self, s: str, line_ended: bool = True) -> 'OutputBuffer': |
| 144 | if not self.batch: |
no outgoing calls
no test coverage detected