Skip to content

Commit

Permalink
Update identitytransformer.py (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
koaning authored Dec 5, 2024
1 parent 6e5f948 commit 86e3417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklego/preprocessing/identitytransformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from sklearn.utils.validation import check_is_fitted


class IdentityTransformer(BaseEstimator, TransformerMixin):
class IdentityTransformer(TransformerMixin, BaseEstimator):
"""The `IdentityTransformer` returns what it is fed. Does not apply any transformation.
The reason for having it is because you can build more expressive pipelines.
Expand Down

0 comments on commit 86e3417

Please sign in to comment.