File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -297,9 +297,9 @@ class Series(IndexOpsMixin[S1], NDFrame):
297
297
def __new__ (
298
298
cls ,
299
299
data : _ListLike ,
300
- dtype : TimestampDtypeArg ,
301
- * ,
302
300
index : Axes | None = ...,
301
+ * ,
302
+ dtype : TimestampDtypeArg ,
303
303
name : Hashable = ...,
304
304
copy : bool = ...,
305
305
) -> TimestampSeries : ...
@@ -342,12 +342,12 @@ class Series(IndexOpsMixin[S1], NDFrame):
342
342
copy : bool = ...,
343
343
) -> IntervalSeries [_OrderableT ]: ...
344
344
@overload
345
- def __new__ (
345
+ def __new__ ( # type: ignore[overload-overlap]
346
346
cls ,
347
347
data : Scalar | _ListLike | dict [HashableT1 , Any ] | None ,
348
- dtype : type [S1 ],
349
- * ,
350
348
index : Axes | None = ...,
349
+ * ,
350
+ dtype : type [S1 ],
351
351
name : Hashable = ...,
352
352
copy : bool = ...,
353
353
) -> Self : ...
You can’t perform that action at this time.
0 commit comments