Skip to content

Commit bdfa26f

Browse files
committed
fix: added missing comma!
1 parent f4bdeb4 commit bdfa26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hivemind_etl/mediawiki/etl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def transform(self) -> list[Document]:
9999
def load(self, documents: list[Document]) -> None:
100100
logging.info(f"Loading {len(documents)} documents into Qdrant!")
101101
ingestion_pipeline = CustomIngestionPipeline(
102-
self.community_id, collection_name=self.platform_id, use_cache=False
102+
self.community_id, collection_name=self.platform_id, use_cache=False,
103103
)
104104

105105
# Process batches in parallel using ThreadPoolExecutor

0 commit comments

Comments
 (0)