Read the resolved local file.
(self)
| 155 | cleanup_paths: list[Path] = field(default_factory=list) |
| 156 | |
| 157 | def read_bytes(self) -> bytes: |
| 158 | """Read the resolved local file.""" |
| 159 | return self.path.read_bytes() |
| 160 | |
| 161 | def to_base64(self) -> str: |
| 162 | """Read the resolved local file and return raw base64 data.""" |
no outgoing calls