Skip to content

Commit

Permalink
Fix error after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderKalistratov committed Dec 8, 2024
1 parent 8bd1bad commit 4168f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpnp/dpnp_iface_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def average(a, axis=None, weights=None, returned=False, *, keepdims=False):


def _get_padding(a_size, v_size, mode):
assert a.size >= v.size
assert a_size >= v_size

if mode == "valid":
l_pad, r_pad = 0, 0
Expand Down

0 comments on commit 4168f27

Please sign in to comment.