Skip to content

Commit 0655a12

Browse files
pre-commit-ci[bot]caneff
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 540d5e2 commit 0655a12

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/core/series.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5005,35 +5005,35 @@ def reindex( # type: ignore[override]
50055005
)
50065006

50075007
@overload
5008-
def rename_axis( # type: ignore[override]
5008+
def rename_axis(
50095009
self,
50105010
mapper: IndexLabel | lib.NoDefault = ...,
50115011
*,
5012-
index = ...,
5012+
index=...,
50135013
axis: Axis = ...,
50145014
copy: bool = ...,
50155015
inplace: Literal[True],
50165016
) -> None:
50175017
...
50185018

50195019
@overload
5020-
def rename_axis( # type: ignore[override]
5020+
def rename_axis(
50215021
self,
50225022
mapper: IndexLabel | lib.NoDefault = ...,
50235023
*,
5024-
index = ...,
5024+
index=...,
50255025
axis: Axis = ...,
50265026
copy: bool = ...,
50275027
inplace: Literal[False] = ...,
50285028
) -> Self:
50295029
...
50305030

50315031
@overload
5032-
def rename_axis( # type: ignore[override]
5032+
def rename_axis(
50335033
self,
50345034
mapper: IndexLabel | lib.NoDefault = ...,
50355035
*,
5036-
index = ...,
5036+
index=...,
50375037
axis: Axis = ...,
50385038
copy: bool = ...,
50395039
inplace: bool = ...,

0 commit comments

Comments
 (0)