Skip to content

Commit

Permalink
fix python 3.8 static check
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger committed Dec 18, 2023
1 parent 41d25c2 commit cac731a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awswrangler/distributed/ray/modin/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _validate_partition_shape(df: pd.DataFrame) -> bool:
"""
# Unwrap partitions as they are currently stored (axis=None)
partitions_shape = np.array(unwrap_partitions(df)).shape
return partitions_shape[1] == 1 # type: ignore[no-any-return]
return partitions_shape[1] == 1 # type: ignore[no-any-return,unused-ignore]


FunctionType = TypeVar("FunctionType", bound=Callable[..., Any])
Expand Down

0 comments on commit cac731a

Please sign in to comment.