(self, line)
| 116 | self.comment_lines = [] |
| 117 | |
| 118 | def queue_comment_line(self, line): |
| 119 | if self.trailing_empty_lines: |
| 120 | # If we had blank lines between comment lines, they are separate blocks |
| 121 | self.dump_comment_lines() |
| 122 | self.comment_lines.append(line) |
| 123 | |
| 124 | def handle_empty_line(self, line): |
| 125 | """Handle an empty line. |
no test coverage detected