You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ensure_platform_int is annotated as returning a np.ndarray but its output is used in places that require a Sequence[int]. I assume this can be fixed by adding a dtype to the np.ndarray.
pandas/core/groupby/ops.py:858: error: Argument 1 to "take" of "ExtensionArray" has incompatible type "ndarray[Any, Any]"; expected "Sequence[int]" [arg-type]
The text was updated successfully, but these errors were encountered:
ensure_platform_int
is annotated as returning anp.ndarray
but its output is used in places that require aSequence[int]
. I assume this can be fixed by adding a dtype to thenp.ndarray
.pandas/core/groupby/ops.py:858: error: Argument 1 to "take" of "ExtensionArray" has incompatible type "ndarray[Any, Any]"; expected "Sequence[int]" [arg-type]
The text was updated successfully, but these errors were encountered: