Skip to content

Commit 93cdef8

Browse files
author
Jiang Yue
committed
correct indentation
1 parent 1f5fd1a commit 93cdef8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/lib.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1530,8 +1530,8 @@ cpdef bint is_integer_array(ndarray values):
15301530

15311531
cdef class IntegerNaValidator(Validator):
15321532
cdef inline bint is_value_typed(self, object value) except -1:
1533-
return util.is_integer_object(value) or (util.is_nan(value)
1534-
and util.is_float_object(value))
1533+
return util.is_integer_object(value)
1534+
or (util.is_nan(value) and util.is_float_object(value))
15351535

15361536

15371537
cdef bint is_integer_na_array(ndarray values):

0 commit comments

Comments
 (0)