Skip to content

Commit

Permalink
Custom kwargs for preprocessors fit
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLepelaars committed Dec 20, 2023
1 parent f26e2b4 commit fe47fb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion numerblox/preprocessing/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class BasePreProcessor(BaseEstimator, TransformerMixin):
def __init__(self):
...

def fit(self, X, y=None):
def fit(self, X, y=None, **kwargs):
return self

@abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "numerblox"
version = "1.1.9"
version = "1.1.10"
description = "Solid Numerai Pipelines"
authors = ["CrowdCent <[email protected]>"]
license = "MIT License"
Expand Down

0 comments on commit fe47fb7

Please sign in to comment.