Skip to content

Commit dac3431

Browse files
committed
fixing
1 parent 0185f08 commit dac3431

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

db_dtypes/json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def __getitem__(self, item):
171171
else:
172172
raise IndexError(
173173
"Only integers, slices and integer or "
174-
"boolean arrays are valid indices."
174+
+ "boolean arrays are valid indices."
175175
)
176176
elif isinstance(item, tuple):
177177
item = indexers.unpack_tuple_and_ellipses(item)

tests/unit/test_json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
pytest.importorskip("pandas", minversion="1.5.0")
2626

2727

28-
# # Python data types mirroring all standard JSON types
28+
# Python data types mirroring all standard JSON types:
2929
# https://json-schema.org/understanding-json-schema/reference/type
3030
JSON_DATA = {
3131
"boolean": True,

0 commit comments

Comments
 (0)