Skip to content

Commit 715ea89

Browse files
committed
Improved code quality
1 parent 62c974c commit 715ea89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/linearboost/sefr_boost.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def fit(self, X, y, sample_weight=None):
387387
X, y = validate_data(
388388
self,
389389
X,
390-
y,
390+
y=y,
391391
accept_sparse=False,
392392
dtype=np.float64,
393393
ensure_all_finite=True,
@@ -581,7 +581,7 @@ def fit(self, X, y, sample_weight=None):
581581
X, y = validate_data(
582582
self,
583583
X,
584-
y,
584+
y=y,
585585
accept_sparse=False,
586586
dtype=np.float64,
587587
ensure_all_finite=True,

0 commit comments

Comments
 (0)