Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ba516c7

Browse files
committedAug 8, 2024·
fixing
1 parent 7add792 commit ba516c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎db_dtypes/json.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ def __getitem__(self, item):
196196
def __iter__(self):
197197
"""Iterate over elements of the array."""
198198
for value in self._pa_array:
199-
val = value.as_py()
200-
# val = JSONArray._deserialize_json(value.as_py())
199+
val = JSONArray._deserialize_json(value.as_py())
201200
if val is None:
202201
yield self._dtype.na_value
203202
else:

0 commit comments

Comments
 (0)
Please sign in to comment.