Skip to content

Commit

Permalink
feat: implement get_static_file_index
Browse files Browse the repository at this point in the history
  • Loading branch information
MHajoha committed Jun 3, 2024
1 parent 3de7aa7 commit f69e905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion questionpy_server/worker/worker/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,4 +280,4 @@ async def get_static_file(self, path: str) -> PackageFileData:
return await asyncio.to_thread(lambda: self._get_static_file_sync(path, manifest))

async def get_static_file_index(self) -> dict[str, PackageFile]:
raise NotImplementedError # TODO: Implement get_static_file_index.
return (await self.get_manifest()).static_files

0 comments on commit f69e905

Please sign in to comment.