Fix transcript reprocessing

This commit is contained in:
2025-01-21 16:52:51 +01:00
parent 97a8f806aa
commit 753a2615db
4 changed files with 36 additions and 7 deletions

View File

@@ -52,3 +52,9 @@ class Storage:
async def _get_file_url(self, filename: str) -> str:
raise NotImplementedError
async def get_file(self, filename: str):
return await self._get_file(filename)
async def _get_file(self, filename: str):
raise NotImplementedError