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

Method required_files_present

ci/compiler/esp32_artifacts.py:65–73  ·  view source on GitHub ↗

Check if all required files are present.

(self)

Source from the content-addressed store, hash-verified

63
64 @property
65 def required_files_present(self) -> bool:
66 """Check if all required files are present."""
67 return all(
68 [
69 self.firmware,
70 self.bootloader,
71 self.partitions_bin or self.partitions_csv,
72 ]
73 )
74
75 def missing_files(self) -> list[str]:
76 """Get list of missing required files."""

Callers

nothing calls this directly

Calls 1

allFunction · 0.85

Tested by

no test coverage detected