Skip to content

Commit

Permalink
TYP: core.window (pandas-dev#37212)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel authored Oct 18, 2020
1 parent de10e72 commit 3a2a190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
4 changes: 2 additions & 2 deletions pandas/core/window/expanding.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def aggregate(self, func, *args, **kwargs):

@Substitution(name="expanding")
@Appender(_shared_docs["count"])
def count(self, **kwargs):
return super().count(**kwargs)
def count(self):
return super().count()

@Substitution(name="expanding")
@Appender(_shared_docs["apply"])
Expand Down
9 changes: 0 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -196,15 +196,6 @@ check_untyped_defs=False
[mypy-pandas.core.reshape.merge]
check_untyped_defs=False

[mypy-pandas.core.window.common]
check_untyped_defs=False

[mypy-pandas.core.window.expanding]
check_untyped_defs=False

[mypy-pandas.core.window.rolling]
check_untyped_defs=False

[mypy-pandas.io.clipboard]
check_untyped_defs=False

Expand Down

0 comments on commit 3a2a190

Please sign in to comment.