Skip to content

Commit 4863706

Browse files
ignore typing error
1 parent 7e92f99 commit 4863706

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/groupby.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5639,7 +5639,7 @@ def _reindex_output(
56395639
if using_string_dtype() and method == "sum":
56405640
if isinstance(output, Series) and isinstance(output.dtype, StringDtype):
56415641
d["fill_value"] = ""
5642-
return output.reindex(**d) # type: ignore[return-value]
5642+
return output.reindex(**d) # type: ignore[return-value, arg-type]
56435643
elif isinstance(output, DataFrame) and any(
56445644
isinstance(dtype, StringDtype) for dtype in output.dtypes
56455645
):

0 commit comments

Comments
 (0)