Result of a download operation.
| 57 | |
| 58 | @dataclass |
| 59 | class 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 |
no outgoing calls
no test coverage detected