From b55f319bb1e8d6f771e513981037bb4495ba3823 Mon Sep 17 00:00:00 2001 From: anujanegi Date: Tue, 25 Jul 2023 20:17:54 +0200 Subject: [PATCH] flake8 format --- bsi_zoo/estimators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsi_zoo/estimators.py b/bsi_zoo/estimators.py index 2159467..25447c3 100644 --- a/bsi_zoo/estimators.py +++ b/bsi_zoo/estimators.py @@ -207,7 +207,7 @@ def _solve_reweighted_lasso( n_positions = L_w.shape[1] // n_orient lc = np.empty(n_positions) for j in range(n_positions): - L_j = L_w[:, (j * n_orient) : ((j + 1) * n_orient)] + L_j = L_w[:, (j * n_orient): ((j + 1) * n_orient)] lc[j] = np.linalg.norm(np.dot(L_j.T, L_j), ord=2) coef_, active_set, _ = _mixed_norm_solver_bcd( y,