We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea4e6b9 commit 410a815Copy full SHA for 410a815
1 file changed
cubed/array/overlap.py
@@ -56,6 +56,9 @@ def coerce(xs, arg, fn):
56
57
depth = coerce(args, depth, coerce_depth)
58
boundary = coerce(args, boundary, coerce_boundary)
59
+ new_axis = kwargs.pop("new_axis", None)
60
+ if new_axis is not None:
61
+ raise NotImplementedError("new_axis is not supported in map_overlap")
62
63
x = args[0] # TODO: support multiple input arrays
64
0 commit comments