Skip to content

Commit b838317

Browse files
committed
linter happy
1 parent 1921e42 commit b838317

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

skglm/solvers/group_prox_newton.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _solve(self, X, y, datafit, penalty, w_init=None, Xw_init=None):
6868
all_groups = np.arange(n_groups)
6969
stop_crit = 0.
7070
p_objs_out = []
71-
71+
7272
# TODO: to be isolated in a seperated method
7373
is_sparse = issparse(X)
7474
if is_sparse:

skglm/solvers/prox_newton.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def _solve(self, X, y, datafit, penalty, w_init=None, Xw_init=None):
8484
is_sparse = issparse(X)
8585
if is_sparse:
8686
X_bundles = (X.data, X.indptr, X.indices)
87-
87+
8888
# TODO: to be isolated in a seperated method
8989
if is_sparse:
9090
datafit.initialize_sparse(X.data, X.indptr, X.indices, y)

0 commit comments

Comments
 (0)