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

Method missing_files

ci/compiler/esp32_artifacts.py:75–84  ·  view source on GitHub ↗

Get list of missing required files.

(self)

Source from the content-addressed store, hash-verified

73 )
74
75 def missing_files(self) -> list[str]:
76 """Get list of missing required files."""
77 missing: list[str] = []
78 if not self.firmware:
79 missing.append("firmware.bin")
80 if not self.bootloader:
81 missing.append("bootloader.bin")
82 if not self.partitions_bin and not self.partitions_csv:
83 missing.append("partitions.bin or partitions.csv")
84 return missing
85
86
87class ESP32ArtifactDiscovery:

Callers 2

create_merged_imageMethod · 0.80
copy_qemu_artifactsMethod · 0.80

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected