fixed issue of mypy for test_ujson (#29022) · pandas-dev/pandas@709436d (original) (raw)
2 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
1 | -try: | |
2 | -import json | |
3 | -except ImportError: | |
4 | -import simplejson as json | |
5 | 1 | import calendar |
6 | 2 | import datetime |
7 | 3 | import decimal |
4 | +import json | |
8 | 5 | import locale |
9 | 6 | import math |
10 | 7 | import re |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -196,9 +196,6 @@ ignore_errors=True | ||
196 | 196 | [mypy-pandas.tests.indexing.test_loc] |
197 | 197 | ignore_errors=True |
198 | 198 | |
199 | -[mypy-pandas.tests.io.json.test_ujson] | |
200 | -ignore_errors=True | |
201 | - | |
202 | 199 | [mypy-pandas.tests.series.test_constructors] |
203 | 200 | ignore_errors=True |
204 | 201 |