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

Skip to content

Commit a6b956c

Browse files
committed
remove trailing whitespace on line
1 parent 5adcf15 commit a6b956c

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
@@ -263,7 +263,7 @@ cdef class ClassificationCriterion(Criterion):
263263
self.sum_left = <double*> calloc(n_elements, sizeof(double))
264264
self.sum_right = <double*> calloc(n_elements, sizeof(double))
265265

266-
if (self.sum_total == NULL or
266+
if (self.sum_total == NULL or
267267
self.sum_left == NULL or
268268
self.sum_right == NULL):
269269
raise MemoryError()

0 commit comments

Comments
 (0)
0