Skip to content

Commit

Permalink
quickfix: fix typo (missing self) that did not make it into #2351
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Jan 30, 2025
1 parent 0a8df62 commit ea3b5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/btrixcloud/uploads.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ async def _create_upload(
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:
Expand Down

0 comments on commit ea3b5e7

Please sign in to comment.