Skip to content

Commit

Permalink
Change MRO. (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtilly authored Nov 8, 2024
1 parent 959288d commit fb863f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/glum/_glm.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ def _group_sum(groups: np.ndarray, data: tm.MatrixBase):


# TODO: abc
class GeneralizedLinearRegressorBase(BaseEstimator, RegressorMixin):
class GeneralizedLinearRegressorBase(RegressorMixin, BaseEstimator):
"""
Base class for :class:`GeneralizedLinearRegressor` and
:class:`GeneralizedLinearRegressorCV`.
Expand Down

0 comments on commit fb863f4

Please sign in to comment.