From 5274e91c2fe913c4b7315cc897c51c9bf2fd5329 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Wed, 13 Sep 2023 16:41:17 -0500 Subject: [PATCH] Fix typo in concatenate error message --- pytato/array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytato/array.py b/pytato/array.py index 067c1a0..1271631 100644 --- a/pytato/array.py +++ b/pytato/array.py @@ -1892,7 +1892,7 @@ def concatenate(arrays: Sequence[Array], axis: int = 0) -> Array: for array in arrays[1:]: if shape_except_axis(array) != shape_except_axis(arrays[0]): - raise ValueError("arrays must have the same shape expect along" + raise ValueError("arrays must have the same shape except along" f" dimension #{axis}.") if not (0 <= axis <= arrays[0].ndim): -- GitLab