Skip to content

Commit

Permalink
Fix minor typo in compile.py (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishitamed19 authored Oct 11, 2024
1 parent 35a9f43 commit 04956c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moshi/moshi/utils/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 04956c8

Please sign in to comment.