(self, lines)
| 714 | return False, lines |
| 715 | |
| 716 | def do_token_transforms(self, lines): |
| 717 | for _ in range(TRANSFORM_LOOP_LIMIT): |
| 718 | changed, lines = self.do_one_token_transform(lines) |
| 719 | if not changed: |
| 720 | return lines |
| 721 | |
| 722 | raise RuntimeError("Input transformation still changing after " |
| 723 | "%d iterations. Aborting." % TRANSFORM_LOOP_LIMIT) |
| 724 | |
| 725 | def transform_cell(self, cell: str) -> str: |
| 726 | """Transforms a cell of input code""" |
no test coverage detected