Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8fe766e

Browse files
committedNov 25, 2019
added type annotation of second argument
1 parent 5922a8c commit 8fe766e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pandas/core/series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
185185
base.IndexOpsMixin.hasnans.func, doc=base.IndexOpsMixin.hasnans.__doc__
186186
)
187187
_data: SingleBlockManager
188-
div: Callable[["Series"], "Series"]
189-
rdiv: Callable[["Series"], "Series"]
188+
div: Callable[["Series", Any], "Series"]
189+
rdiv: Callable[["Series", Any], "Series"]
190190

191191
# ----------------------------------------------------------------------
192192
# Constructors

0 commit comments

Comments
 (0)
Please sign in to comment.