We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0185f08 commit dac3431Copy full SHA for dac3431
db_dtypes/json.py
@@ -171,7 +171,7 @@ def __getitem__(self, item):
171
else:
172
raise IndexError(
173
"Only integers, slices and integer or "
174
- "boolean arrays are valid indices."
+ + "boolean arrays are valid indices."
175
)
176
elif isinstance(item, tuple):
177
item = indexers.unpack_tuple_and_ellipses(item)
tests/unit/test_json.py
@@ -25,7 +25,7 @@
25
pytest.importorskip("pandas", minversion="1.5.0")
26
27
28
-# # Python data types mirroring all standard JSON types
+# Python data types mirroring all standard JSON types:
29
# https://json-schema.org/understanding-json-schema/reference/type
30
JSON_DATA = {
31
"boolean": True,
0 commit comments