Skip to content

Commit

Permalink
fixing too-many-arguments - since file is now changed pylint checks it
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsbatista committed Nov 12, 2024
1 parent cf6d2bc commit 8f41a4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def __init__(
progress_bar: bool = True,
meta_fields_to_embed: Optional[List[str]] = None,
embedding_separator: str = "\n",
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-positional-arguments
"""
Creates a HuggingFaceAPIDocumentEmbedder component.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(
suffix: str = "",
truncate: bool = True,
normalize: bool = False,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-positional-arguments
"""
Creates a HuggingFaceAPITextEmbedder component.
Expand Down

0 comments on commit 8f41a4d

Please sign in to comment.