MCPcopy Create free account
hub / github.com/FastLED/FastLED / parsed

Method parsed

ci/compiler/platformio_ini.py:1230–1239  ·  view source on GitHub ↗

Get the parsed, typed configuration. This property is lazily computed and cached. Returns: ParsedPlatformIOConfig with all sections parsed into typed dataclasses

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

_parse_configMethod · 0.95

Tested by

no test coverage detected