Skip to content

Commit

Permalink
Fix mypy errors for pandas\tests\* pandas-dev#28926 (test_algos.py) (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
lrm25 authored and Nico Cernek committed Jan 1, 2020
1 parent fa6ab99 commit f3ef4db
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion pandas/tests/test_algos.py
Expand Up @@ -767,7 +767,7 @@ def test_same_object_is_in(self):
# with similar behavior, then we at least should
# fall back to usual python's behavior: "a in [a] == True"
class LikeNan:
def __eq__(self):
def __eq__(self, other):
return False

def __hash__(self):
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Expand Up @@ -220,9 +220,6 @@ ignore_errors=True
[mypy-pandas.tests.series.test_operators]
ignore_errors=True

[mypy-pandas.tests.test_algos]
ignore_errors=True

[mypy-pandas.tests.test_base]
ignore_errors=True

Expand Down

0 comments on commit f3ef4db

Please sign in to comment.