Skip to content

Commit eec66a5

Browse files
committed
fixing typing
1 parent cecde27 commit eec66a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

integrations/astra/src/haystack_integrations/document_stores/astra/document_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def update_by_filter(self, filters: dict[str, Any], meta: dict[str, Any]) -> int
482482
# use dot notation to update nested fields in the meta-object - ensures fields are created if they don't exist
483483
update_fields = {f"meta.{key}": value for key, value in meta.items()}
484484
update_operation = {"$set": update_fields}
485-
update_count = self.index.update_many(filter_condition=converted_filters, update=update_operation)
485+
update_count = self.index.update_many(filter_condition=converted_filters, update=update_operation) # type: ignore
486486

487487
logger.info(f"{update_count} documents updated by filter")
488488

0 commit comments

Comments
 (0)