One file write the codegen would perform. Collected during the phase walk; ``apply_writes`` either flushes them to disk, prints diffs, or returns the count under ``--check``.
| 168 | |
| 169 | @dataclass |
| 170 | class FileWrite: |
| 171 | """One file write the codegen would perform. Collected during the |
| 172 | phase walk; ``apply_writes`` either flushes them to disk, prints |
| 173 | diffs, or returns the count under ``--check``.""" |
| 174 | path: str |
| 175 | content: str |
| 176 | |
| 177 | |
| 178 | def override_toggle_name(prop_name: str) -> str: |
no outgoing calls
no test coverage detected