Skip to content

Commit

Permalink
FIX-#6642: fix 'modin.numpy.array.sum' on HDK
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Oct 11, 2023
1 parent b608ea0 commit 0c8fb79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def min(self, **kwargs):
return self._agg("min", **kwargs)

def sum(self, **kwargs):
min_count = kwargs.pop("min_count")
min_count = kwargs.pop("min_count", 0)
if min_count != 0:
raise NotImplementedError(
f"HDK's sum does not support such set of parameters: min_count={min_count}."
Expand Down

0 comments on commit 0c8fb79

Please sign in to comment.