Check if all required files are present.
(self)
| 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.""" |