Close the file. To be awaitable, compatible with async, this is run in threadpool.
(self)
| 122 | return await super().seek(offset) |
| 123 | |
| 124 | async def close(self) -> None: |
| 125 | """ |
| 126 | Close the file. |
| 127 | |
| 128 | To be awaitable, compatible with async, this is run in threadpool. |
| 129 | """ |
| 130 | return await super().close() |
| 131 | |
| 132 | @classmethod |
| 133 | def _validate(cls, __input_value: Any, _: Any) -> "UploadFile": |
no outgoing calls