quickfix: fix typo (missing self) that did not make it into #2351

This commit is contained in:
Ilya Kreymer 2025-01-30 13:11:42 -08:00
parent 0a8df62ab4
commit ea3b5e7322

View File

@ -207,7 +207,7 @@ class UploadOps(BaseCrawlOps):
return {"id": crawl_id, "added": True, "storageQuotaReached": quota_reached}
async def _add_pages_and_update_collections(
crawl_id: str, collections: Optional[List[str]] = None
self, crawl_id: str, collections: Optional[List[str]] = None
):
await self.page_ops.add_crawl_pages_to_db_from_wacz(crawl_id)
if collections: