Skip to content

Commit a9f5d8e

Browse files
committed
Fix type annotation of amax
1 parent 3442f11 commit a9f5d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytato/reductions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def sum(a: Array,
351351
axis_to_reduction_descr, initial)
352352

353353

354-
def amax(a: Array, axis: int | tuple[int] | None = None, *,
354+
def amax(a: Array, axis: int | tuple[int, ...] | None = None, *,
355355
initial: Any = _NoValue,
356356
axis_to_reduction_descr: Mapping[int, ReductionDescriptor] | None = None
357357
) -> Array:

0 commit comments

Comments
 (0)