Skip to content

Commit d2b1f78

Browse files
committed
Re-add missing empty lines
1 parent 8995d94 commit d2b1f78

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/_libs/lib.pyx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,7 @@ def astype_intsafe(ndarray[object] arr, new_dtype):
517517
object val
518518
bint is_datelike
519519
ndarray result
520+
520521
is_datelike = new_dtype == 'm8[ns]'
521522
result = np.empty(n, dtype=new_dtype)
522523
for i in range(n):
@@ -525,6 +526,7 @@ def astype_intsafe(ndarray[object] arr, new_dtype):
525526
result[i] = NPY_NAT
526527
else:
527528
result[i] = val
529+
528530
return result
529531

530532

0 commit comments

Comments
 (0)