Skip to content

Commit 767b0ca

Browse files
committed
small fix so that CI type validation does not complain
1 parent 6c1e429 commit 767b0ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/missing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ def _derive_indices_of_nans_to_preserve(
350350
preserve_nans |= mid_nans
351351

352352
# sort preserve_nans and covert to list
353-
preserve_nans = sorted(preserve_nans)
354-
return preserve_nans
353+
preserve_nans_sorted = sorted(preserve_nans)
354+
return preserve_nans_sorted
355355

356356

357357
def _interpolate_scipy_wrapper(

0 commit comments

Comments
 (0)