File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
pandas/tests/extension/json Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 16
16
import random
17
17
import string
18
18
import sys
19
- from typing import Type
19
+ from typing import Any , Mapping , Type
20
20
21
21
import numpy as np
22
22
27
27
class JSONDtype (ExtensionDtype ):
28
28
type = abc .Mapping
29
29
name = "json"
30
- na_value = UserDict ()
30
+ na_value : Mapping [ str , Any ] = UserDict ()
31
31
32
32
@classmethod
33
33
def construct_array_type (cls ) -> Type ["JSONArray" ]:
Original file line number Diff line number Diff line change @@ -138,9 +138,6 @@ ignore_errors=True
138
138
[mypy-pandas.tests.extension.decimal.test_decimal]
139
139
ignore_errors =True
140
140
141
- [mypy-pandas.tests.extension.json.array]
142
- ignore_errors =True
143
-
144
141
[mypy-pandas.tests.extension.json.test_json]
145
142
ignore_errors =True
146
143
You can’t perform that action at this time.
0 commit comments