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

Class DownloadResult

ci/compiler/platformio_cache.py:59–69  ·  view source on GitHub ↗

Result of a download operation.

Source from the content-addressed store, hash-verified

57
58@dataclass
59class DownloadResult:
60 """Result of a download operation."""
61
62 url: str
63 temp_path: Path
64 exception: Optional[BaseException] = None
65
66 @property
67 def success(self) -> bool:
68 """True if download succeeded."""
69 return self.exception is None
70
71
72@dataclass

Callers 2

_download_with_progressFunction · 0.85
_copy_file_with_progressFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected