From 86e3417fe7b7cd1d781dd7ea60e5dda276fd0365 Mon Sep 17 00:00:00 2001 From: vincent d warmerdam Date: Thu, 5 Dec 2024 13:39:17 +0100 Subject: [PATCH] Update identitytransformer.py (#723) --- sklego/preprocessing/identitytransformer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklego/preprocessing/identitytransformer.py b/sklego/preprocessing/identitytransformer.py index bf291f00e..33dda462d 100644 --- a/sklego/preprocessing/identitytransformer.py +++ b/sklego/preprocessing/identitytransformer.py @@ -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.