Skip to content

Commit c5b77d2

Browse files
committed
fixed incorrectly sorted imports
1 parent 6733186 commit c5b77d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/missing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import numpy as np
66

77
from pandas._libs import algos, lib
8+
from pandas._typing import Dtype, Hashable, Optional
89
from pandas.compat._optional import import_optional_dependency
910

1011
from pandas.core.dtypes.cast import infer_dtype_from_array
@@ -19,7 +20,6 @@
1920
needs_i8_conversion,
2021
)
2122
from pandas.core.dtypes.missing import isna
22-
from pandas._typing import Optional, Hashable, Dtype
2323

2424

2525
def mask_missing(arr, values_to_mask):

0 commit comments

Comments
 (0)