Skip to content

Commit

Permalink
NIFI-13495 PutChroma 'unexpected keyword argument' error
Browse files Browse the repository at this point in the history
  • Loading branch information
krisztina-zsihovszki committed Jul 4, 2024
1 parent 26adfa6 commit 5e8f943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/vectorstores/PutChroma.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ProcessorDetails:
client = None
embedding_function = None

def __init__(self):
def __init__(self, **kwargs): # noqa: ARG002
self.property_descriptors = list(ChromaUtils.PROPERTIES) + [
prop for prop in EmbeddingUtils.PROPERTIES if prop != EmbeddingUtils.EMBEDDING_MODEL
]
Expand Down

0 comments on commit 5e8f943

Please sign in to comment.