We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4a3e9 commit daf5bb4Copy full SHA for daf5bb4
pandas/tests/extension/json/array.py
@@ -16,7 +16,7 @@
16
import random
17
import string
18
import sys
19
-from typing import Type
+from typing import Any, Mapping, Type
20
21
import numpy as np
22
@@ -27,7 +27,7 @@
27
class JSONDtype(ExtensionDtype):
28
type = abc.Mapping
29
name = "json"
30
- na_value = UserDict()
+ na_value: Mapping[str, Any] = UserDict()
31
32
@classmethod
33
def construct_array_type(cls) -> Type["JSONArray"]:
setup.cfg
@@ -138,9 +138,6 @@ ignore_errors=True
138
[mypy-pandas.tests.extension.decimal.test_decimal]
139
ignore_errors=True
140
141
-[mypy-pandas.tests.extension.json.array]
142
-ignore_errors=True
143
-
144
[mypy-pandas.tests.extension.json.test_json]
145
146
0 commit comments