Skip to content

Commit 80f1ea9

Browse files
committed
fix inheritance order
1 parent 77b5c85 commit 80f1ea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cebra/integrations/sklearn/cebra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def _load_cebra_with_sklearn_backend(cebra_info: Dict) -> "CEBRA":
371371
return cebra_
372372

373373

374-
class CEBRA(BaseEstimator, TransformerMixin):
374+
class CEBRA(TransformerMixin, BaseEstimator):
375375
"""CEBRA model defined as part of a ``scikit-learn``-like API.
376376
377377
Attributes:

0 commit comments

Comments
 (0)