Move the uploaded file cursor. Args: offset: Absolute byte offset.
(self, offset: int)
| 147 | await self._upload_file.write(data) |
| 148 | |
| 149 | async def seek(self, offset: int) -> None: |
| 150 | """Move the uploaded file cursor. |
| 151 | |
| 152 | Args: |
| 153 | offset: Absolute byte offset. |
| 154 | """ |
| 155 | await self._upload_file.seek(offset) |
| 156 | |
| 157 | async def close(self) -> None: |
| 158 | """Close the uploaded file.""" |
no outgoing calls