(self)
| 53 | await stream.save_as(path) |
| 54 | |
| 55 | async def failure(self) -> Optional[str]: |
| 56 | reason = await self._channel.send( |
| 57 | "failure", |
| 58 | None, |
| 59 | ) |
| 60 | if reason is None: |
| 61 | return None |
| 62 | return patch_error_message(reason) |
| 63 | |
| 64 | async def delete(self) -> None: |
| 65 | await self._channel.send( |
nothing calls this directly
no test coverage detected