Skip to content

Commit a59debc

Browse files
committed
troubleshoot
1 parent c5e1276 commit a59debc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/json/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def __array__(self, dtype=None):
147147
dtype = object
148148
if dtype == object:
149149
# on py38 builds it looks like numpy is inferring to a non-1D array
150-
return construct_1d_object_array_from_listlike(self)
150+
return construct_1d_object_array_from_listlike(list(self))
151151
return np.asarray(self.data, dtype=dtype)
152152

153153
@property

0 commit comments

Comments
 (0)