(self, buf: bytes)
| 116 | ) |
| 117 | |
| 118 | def _prepare_decrypt(self, buf: bytes) -> bytes: |
| 119 | return decrypt(b64decode(self._credentials.secret), b64decode(self._credentials.hash), buf) |
| 120 | |
| 121 | async def download_to_drive( |
| 122 | self, |
no test coverage detected