End of file. Process outstanding comments and end with a newline.
(self, leaf: Leaf)
| 383 | yield from self.line() |
| 384 | |
| 385 | def visit_ENDMARKER(self, leaf: Leaf) -> Iterator[Line]: |
| 386 | """End of file. Process outstanding comments and end with a newline.""" |
| 387 | yield from self.visit_default(leaf) |
| 388 | yield from self.line() |
| 389 | |
| 390 | def visit_STANDALONE_COMMENT(self, leaf: Leaf) -> Iterator[Line]: |
| 391 | any_open_brackets = self.current_line.bracket_tracker.any_open_brackets() |
nothing calls this directly
no test coverage detected