Skip to content

Commit b20d6ab

Browse files
authored
STY: Add strict=True in zip() in pandas\core\array_algos\quantile.py (#62575)
1 parent 323036b commit b20d6ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/array_algos/quantile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _nanquantile(
197197
assert mask.shape == values.shape
198198
result = [
199199
_nanquantile_1d(val, m, qs, na_value, interpolation=interpolation)
200-
for (val, m) in zip(list(values), list(mask))
200+
for (val, m) in zip(list(values), list(mask), strict=True)
201201
]
202202
if values.dtype.kind == "f":
203203
# preserve itemsize

0 commit comments

Comments
 (0)