File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 48
48
import pandas .core .common as com
49
49
50
50
if TYPE_CHECKING :
51
- from pandas .core .series import Series
52
- from pandas .core .index import Index
51
+ from pandas .core .series import Series # noqa: F401
52
+ from pandas .core .index import Index # noqa: F401
53
53
54
54
55
55
def array (
@@ -594,13 +594,13 @@ def is_empty_data(data: Any) -> bool:
594
594
595
595
def create_series_with_explicit_dtype (
596
596
data : Any = None ,
597
- index : Optional [Union [ArrayLike , Index ]] = None ,
597
+ index : Optional [Union [ArrayLike , " Index" ]] = None ,
598
598
dtype : Optional [Dtype ] = None ,
599
599
name : Optional [str ] = None ,
600
600
copy : bool = False ,
601
601
fastpath : bool = False ,
602
602
dtype_if_empty : Dtype = object ,
603
- ) -> Series :
603
+ ) -> " Series" :
604
604
"""
605
605
Helper to pass an explicit dtype when instantiating an empty Series.
606
606
You can’t perform that action at this time.
0 commit comments