We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143eb38 commit 9486f04Copy full SHA for 9486f04
pandas/tests/indexing/test_coercion.py
@@ -1,4 +1,5 @@
1
import itertools
2
+from typing import 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]
933
rep["object"] = ["a", "b"]
934
rep["int64"] = [4, 5]
935
rep["float64"] = [1.1, 2.2]
setup.cfg
@@ -193,9 +193,6 @@ ignore_errors=True
193
[mypy-pandas.tests.indexes.timedeltas.test_timedelta]
194
ignore_errors=True
195
196
-[mypy-pandas.tests.indexing.test_coercion]
197
-ignore_errors=True
198
-
199
[mypy-pandas.tests.indexing.test_loc]
200
201
0 commit comments