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

Class ArtifactProcessingResult

ci/compiler/platformio_cache.py:73–85  ·  view source on GitHub ↗

Result of processing an artifact.

Source from the content-addressed store, hash-verified

71
72@dataclass
73class ArtifactProcessingResult:
74 """Result of processing an artifact."""
75
76 url: str
77 is_framework: bool
78 env_section: str
79 resolved_path: Optional[str] = None
80 exception: Optional[BaseException] = None
81
82 @property
83 def success(self) -> bool:
84 """True if processing succeeded."""
85 return self.exception is None and self.resolved_path is not None
86
87
88@dataclass

Callers 1

_process_artifactFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected