Result from compiler initialization.
| 23 | |
| 24 | @dataclass |
| 25 | class InitResult(CompilerResult): |
| 26 | """Result from compiler initialization.""" |
| 27 | |
| 28 | @property |
| 29 | def platformio_ini(self) -> Path: |
| 30 | return self.build_dir / "platformio.ini" |
| 31 | |
| 32 | |
| 33 | @dataclass |
no outgoing calls
no test coverage detected