quickfix: fix typo (missing self) that did not make it into #2351
This commit is contained in:
parent
0a8df62ab4
commit
ea3b5e7322
@ -207,7 +207,7 @@ class UploadOps(BaseCrawlOps):
|
|||||||
return {"id": crawl_id, "added": True, "storageQuotaReached": quota_reached}
|
return {"id": crawl_id, "added": True, "storageQuotaReached": quota_reached}
|
||||||
|
|
||||||
async def _add_pages_and_update_collections(
|
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)
|
await self.page_ops.add_crawl_pages_to_db_from_wacz(crawl_id)
|
||||||
if collections:
|
if collections:
|
||||||
|
Loading…
Reference in New Issue
Block a user