Find a file in the artifact directory.
(self, filename: str)
| 108 | ) |
| 109 | |
| 110 | def _find_file(self, filename: str) -> Optional[Path]: |
| 111 | """Find a file in the artifact directory.""" |
| 112 | path = self.artifact_dir / filename |
| 113 | return path if path.exists() else None |
| 114 | |
| 115 | def read_flash_config(self) -> FlashConfig: |
| 116 | """Read flash configuration from build artifacts.""" |