Result of resolving a decode path to a local file.
| 109 | |
| 110 | @dataclass(slots=True) |
| 111 | class ResolvedFile: |
| 112 | """Result of resolving a decode path to a local file.""" |
| 113 | |
| 114 | file_path: str |
| 115 | extension: str |
| 116 | temp_download_path: str | None |
| 117 | |
| 118 | |
| 119 | def _resolve_file(decode_path: str) -> ResolvedFile: |