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 d4e0d3e commit 0ac9567Copy full SHA for 0ac9567
pandas/core/arrays/arrow/array.py
@@ -1909,7 +1909,7 @@ def _explode(self):
1909
mask = counts == 0
1910
if mask.any():
1911
# pc.if_else here is similar to `values[mask] = fill_value`
1912
- # but this avoids a object-dtype round-trip.
+ # but this avoids an object-dtype round-trip.
1913
pa_values = pc.if_else(~mask, values._pa_array, fill_value)
1914
values = type(self)(pa_values)
1915
counts = counts.copy()
0 commit comments