We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008fe48 commit 217adc8Copy full SHA for 217adc8
pandas/tests/indexing/test_coercion.py
@@ -1,4 +1,5 @@
1
import itertools
2
+from typing import Any, Dict, List
3
4
import numpy as np
5
import pytest
@@ -928,7 +929,7 @@ class TestReplaceSeriesCoercion(CoercionBase):
928
929
klasses = ["series"]
930
method = "replace"
931
- rep = {}
932
+ rep = {} # type: Dict[str, List[Any]]
933
rep["object"] = ["a", "b"]
934
rep["int64"] = [4, 5]
935
rep["float64"] = [1.1, 2.2]
setup.cfg
@@ -199,9 +199,6 @@ ignore_errors=True
199
[mypy-pandas.tests.indexes.timedeltas.test_timedelta]
200
ignore_errors=True
201
202
-[mypy-pandas.tests.indexing.test_coercion]
203
-ignore_errors=True
204
-
205
[mypy-pandas.tests.indexing.test_loc]
206
207
0 commit comments