From 04956c8e85cb06cc072535e9196102522532cd85 Mon Sep 17 00:00:00 2001 From: Ishita Mediratta Date: Fri, 11 Oct 2024 18:43:07 +0530 Subject: [PATCH] Fix minor typo in compile.py (#133) --- moshi/moshi/utils/compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moshi/moshi/utils/compile.py b/moshi/moshi/utils/compile.py index 780513b..f84f8e4 100644 --- a/moshi/moshi/utils/compile.py +++ b/moshi/moshi/utils/compile.py @@ -241,7 +241,7 @@ def _match_values_copy_tensors(args: tuple, target_args: tuple) -> None: ) if source.shape != target.shape: raise ValueError( - f"Argument #{idx} had shape {target.shape}, but got shae {source.shape}" + f"Argument #{idx} had shape {target.shape}, but got shape {source.shape}" ) target.copy_(source) else: