8000 remove trailing whitespace on line · scikit-learn/scikit-learn@edb3956 · GitHub
[go: up one dir, main page]

Skip to content

Commit edb3956

Browse files
committed
remove trailing whitespace on line
1 parent b395f81 commit edb3956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/tree/_criterion.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ cdef class ClassificationCriterion(Criterion):
267267
self.sum_left = <double*> calloc(n_elements, sizeof(double))
268268
self.sum_right = <double*> calloc(n_elements, sizeof(double))
269269

270-
if (self.sum_total == NULL or
270+
if (self.sum_total == NULL or
271271
self.sum_left == NULL or
272272
self.sum_right == NULL):
273273
raise MemoryError()

0 commit comments

Comments
 (0)
0