A single change block inside an Update File hunk.
| 62 | |
| 63 | @dataclass |
| 64 | class UpdateChunk: |
| 65 | """A single change block inside an Update File hunk.""" |
| 66 | old_lines: List[str] |
| 67 | new_lines: List[str] |
| 68 | change_context: Optional[str] = None |
| 69 | is_end_of_file: bool = False |
| 70 | |
| 71 | |
| 72 | @dataclass |
no outgoing calls
no test coverage detected