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 25, 2019
1 parent 5922a8c commit 8fe766e
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 @@ -185,8 +185,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 8fe766e

Please sign in to comment.