Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MahmoudAshraf97 authored Dec 4, 2023
1 parent 4acbdd7 commit f865dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whisperx/transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def cli():
if model_name.endswith(".en") and args["language"] != "en":
if args["language"] is not None:
warnings.warn(
f"{model_name} is an English-only model but receipted '{args['language']}'; using English instead."
f"{model_name} is an English-only model but received '{args['language']}'; using English instead."
)
args["language"] = "en"
align_language = args["language"] if args["language"] is not None else "en" # default to loading english if not specified
Expand Down

0 comments on commit f865dfe

Please sign in to comment.