Skip to content

Commit 9e7351d

Browse files
committed
Removed prints statements used for debugging
1 parent bffadaa commit 9e7351d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sklearn/ensemble/tests/test_weight_boosting.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ def fit(self, X, y, sample_weight=None):
281281
types = [i.data_type_ for i in sparse_classifier.estimators_]
282282

283283
assert_array_equal(sparse_results, dense_results)
284-
print(types)
285284
assert all([(t == csc_matrix or t == csr_matrix)
286285
for t in types])
287286

@@ -324,7 +323,6 @@ def fit(self, X, y, sample_weight=None):
324323
types = [i.data_type_ for i in sparse_classifier.estimators_]
325324

326325
assert_array_equal(sparse_results, dense_results)
327-
print(types)
328326
assert all([(t == csc_matrix or t == csr_matrix)
329327
for t in types])
330328

0 commit comments

Comments
 (0)