File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1577,13 +1577,17 @@ class Series(IndexOpsMixin[S1], NDFrame):
15771577 # just failed to generate these so I couldn't match
15781578 # them up.
15791579 @overload
1580- def __add__ (self : Series [int ], other : int ) -> Series [int ]: ...
1580+ def __add__ ( # pyright: ignore[reportOverlappingOverload]
1581+ self : Series [int ], other : int
1582+ ) -> Series [int ]: ...
15811583 @overload
15821584 def __add__ (self : Series [int ], other : float ) -> Series [float ]: ...
15831585 @overload
15841586 def __add__ (self : Series [int ], other : complex ) -> Series [complex ]: ...
15851587 @overload
1586- def __add__ (self : Series [float ], other : int ) -> Series [float ]: ...
1588+ def __add__ ( # pyright: ignore[reportOverlappingOverload]
1589+ self : Series [float ], other : int
1590+ ) -> Series [float ]: ...
15871591 @overload
15881592 def __add__ (self : Series [float ], other : float ) -> Series [float ]: ...
15891593 @overload
You can’t perform that action at this time.
0 commit comments