(self, lines)
| 574 | return False, lines |
| 575 | |
| 576 | def do_token_transforms(self, lines): |
| 577 | for _ in range(TRANSFORM_LOOP_LIMIT): |
| 578 | changed, lines = self.do_one_token_transform(lines) |
| 579 | if not changed: |
| 580 | return lines |
| 581 | |
| 582 | raise RuntimeError("Input transformation still changing after " |
| 583 | "%d iterations. Aborting." % TRANSFORM_LOOP_LIMIT) |
| 584 | |
| 585 | def transform_cell(self, cell: str) -> str: |
| 586 | """Transforms a cell of input code""" |
no test coverage detected