Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
mathurinm committed Nov 7, 2024
1 parent f2ac94e commit cdc7768
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion skglm/estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from skglm.utils.jit_compilation import compiled_clone
from skglm.solvers import AndersonCD, MultiTaskBCD, GroupBCD
from skglm.datafits import (Cox, Quadratic, Logistic, QuadraticSVC,
QuadraticMultiTask, QuadraticGroup, QuadraticHessian)
QuadraticMultiTask, QuadraticGroup,)
from skglm.penalties import (L1, WeightedL1, L1_plus_L2, L2, WeightedGroupL2,
MCPenalty, WeightedMCPenalty, IndicatorBox, L2_1)
from skglm.utils.data import grp_converter
Expand Down
1 change: 1 addition & 0 deletions skglm/tests/test_datafits.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,5 +237,6 @@ def test_HessianQuadratic():
# check that it's not just because we got alpha too high and thus 0 coef
np.testing.assert_array_less(0.1, np.max(np.abs(qpl1.coef_)))


if __name__ == '__main__':
pass

0 comments on commit cdc7768

Please sign in to comment.