From 52de2fe342c09f8160efeb9d5ccf11dac185cd3e Mon Sep 17 00:00:00 2001 From: Benex254 Date: Mon, 5 Aug 2024 09:47:03 +0300 Subject: [PATCH] feat(cli): rename translation_type option to translation-type --- fastanime/cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastanime/cli/__init__.py b/fastanime/cli/__init__.py index 640ae63..2c156b3 100644 --- a/fastanime/cli/__init__.py +++ b/fastanime/cli/__init__.py @@ -61,7 +61,7 @@ signal.signal(signal.SIGINT, handle_exit) ) @click.option( "-t", - "--translation_type", + "--translation-type", type=click.Choice(["dub", "sub"]), help="Anime language[dub/sub]", )