Skip to content

Commit 017a5e0

Browse files
committed
cosmit
1 parent 28a4a5c commit 017a5e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sklearn/model_selection/_search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -644,8 +644,8 @@ def grid_scores_(self):
644644
self.cv_results_['params'],
645645
self.cv_results_['mean_test_score'],
646646
self.cv_results_['std_test_score'])):
647-
scores = np.array(list(self.cv_results_['split%d_test_score' %
648-
s][i]
647+
scores = np.array(list(self.cv_results_['split%d_test_score'
648+
% s][i]
649649
for s in range(self.n_splits_)),
650650
dtype=np.float64)
651651
grid_scores.append(_CVScoreTuple(params, mean, scores))

0 commit comments

Comments
 (0)