Quick access to all transformers.
(self)
| 585 | |
| 586 | @property |
| 587 | def transforms(self): |
| 588 | "Quick access to all transformers." |
| 589 | return self.physical_line_transforms + \ |
| 590 | [self.assemble_logical_lines] + self.logical_line_transforms + \ |
| 591 | [self.assemble_python_lines] + self.python_line_transforms |
| 592 | |
| 593 | @property |
| 594 | def transforms_in_use(self): |
nothing calls this directly
no outgoing calls
no test coverage detected