| 47 | |
| 48 | @dataclass(frozen=True) |
| 49 | class WorkflowResult: |
| 50 | path: Path |
| 51 | changes: tuple[str, ...] |
| 52 | original_text: str |
| 53 | updated_text: str |
| 54 | |
| 55 | @property |
| 56 | def changed(self) -> bool: |
| 57 | return self.original_text != self.updated_text |
| 58 | |
| 59 | |
| 60 | def line_indent(line: str) -> int: |
no outgoing calls
no test coverage detected