Skip to content

CI: mypy fixup #42773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -2896,7 +2896,7 @@ def _get_cythonized_result(
grouper = self.grouper

ids, _, ngroups = grouper.group_info
output: dict[base.OutputKey, np.ndarray] = {}
output: dict[base.OutputKey, ArrayLike] = {}

base_func = getattr(libgroupby, how)
base_func = partial(base_func, labels=ids)
Expand Down Expand Up @@ -2946,16 +2946,20 @@ def blk_func(values: ArrayLike) -> ArrayLike:
result = result.reshape(-1)

if result_is_index:
result = algorithms.take_nd(values, result)
# Incompatible types in assignment (expression has type
# "Union[ExtensionArray, ndarray[Any, Any]]", variable has
# type "ndarray[Any, Any]")
result = algorithms.take_nd(values, result) # type: ignore[assignment]

out = result
if post_processing:
pp_kwargs = {}
if needs_nullable:
pp_kwargs["nullable"] = isinstance(values, BaseMaskedArray)

result = post_processing(result, inferences, **pp_kwargs)
out = post_processing(out, inferences, **pp_kwargs)

return result
return out

error_msg = ""
for idx, obj in enumerate(self._iterate_slices()):
Expand Down