Get the parsed, typed configuration. This property is lazily computed and cached. Returns: ParsedPlatformIOConfig with all sections parsed into typed dataclasses
(self)
| 1228 | |
| 1229 | @property |
| 1230 | def parsed(self) -> ParsedPlatformIOConfig: |
| 1231 | """ |
| 1232 | Get the parsed, typed configuration. This property is lazily computed and cached. |
| 1233 | |
| 1234 | Returns: |
| 1235 | ParsedPlatformIOConfig with all sections parsed into typed dataclasses |
| 1236 | """ |
| 1237 | if self._parsed_config is None: |
| 1238 | self._parsed_config = self._parse_config() |
| 1239 | return self._parsed_config |
| 1240 | |
| 1241 | def _parse_config(self) -> ParsedPlatformIOConfig: |
| 1242 | """ |
nothing calls this directly
no test coverage detected