Skip to content

Commit

Permalink
added type annotation of second argument
Browse files Browse the repository at this point in the history
  • Loading branch information
SaturnFromTitan committed Nov 26, 2019
1 parent caf9c17 commit 8392174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
base.IndexOpsMixin.hasnans.func, doc=base.IndexOpsMixin.hasnans.__doc__
)
_data: SingleBlockManager
div: Callable[["Series"], "Series"]
rdiv: Callable[["Series"], "Series"]
div: Callable[["Series", Any], "Series"]
rdiv: Callable[["Series", Any], "Series"]

# ----------------------------------------------------------------------
# Constructors
Expand Down

0 comments on commit 8392174

Please sign in to comment.