Skip to content

Commit

Permalink
type other
Browse files Browse the repository at this point in the history
  • Loading branch information
twoertwein committed Mar 31, 2022
1 parent ebb4d62 commit 74e61a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pandas/core/indexes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -4533,7 +4533,7 @@ def _reindex_non_unique(
@overload
def join(
self,
other,
other: Index,
*,
how: str_t = ...,
level: Level = ...,
Expand All @@ -4545,7 +4545,7 @@ def join(
@overload
def join(
self,
other,
other: Index,
*,
how: str_t = ...,
level: Level = ...,
Expand All @@ -4557,7 +4557,7 @@ def join(
@overload
def join(
self,
other,
other: Index,
*,
how: str_t = ...,
level: Level = ...,
Expand All @@ -4571,7 +4571,7 @@ def join(
@_maybe_return_indexers
def join(
self,
other,
other: Index,
how: str_t = "left",
level: Level = None,
return_indexers: bool = False,
Expand Down

0 comments on commit 74e61a1

Please sign in to comment.