Skip to content

Commit

Permalink
NIFI-13495 Fixed PutChroma unexpected keyword argument error (#4)
Browse files Browse the repository at this point in the history
Signed-off-by: David Handermann <[email protected]>
  • Loading branch information
krisztina-zsihovszki authored Jul 5, 2024
1 parent 26adfa6 commit c4a8860
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 c4a8860

Please sign in to comment.