We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 009ffc4 commit 3940401Copy full SHA for 3940401
pandas/tests/frame/test_convert_to.py
@@ -575,9 +575,9 @@ def test_frame_to_dict_tz(self):
575
),
576
577
(
578
- defaultdict(list),
+ defaultdict(dict),
579
defaultdict(
580
- list,
+ dict,
581
{
582
0: {"int_col": 1, "float_col": 1.0},
583
1: {"int_col": 2, "float_col": 2.0},
setup.cfg
@@ -161,9 +161,6 @@ ignore_errors=True
161
[mypy-pandas.tests.frame.test_constructors]
162
ignore_errors=True
163
164
-[mypy-pandas.tests.frame.test_convert_to]
165
-ignore_errors=True
166
-
167
[mypy-pandas.tests.indexes.datetimes.test_datetimelike]
168
169
0 commit comments