From 685fdfcfac6d639caf3aeb55687851cd8ab74f32 Mon Sep 17 00:00:00 2001 From: Jaikinator Date: Fri, 25 Aug 2023 14:32:14 +0200 Subject: [PATCH] resolved same argument name --- autotranscript/autotranscript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotranscript/autotranscript.py b/autotranscript/autotranscript.py index e053d6a..a8e23aa 100644 --- a/autotranscript/autotranscript.py +++ b/autotranscript/autotranscript.py @@ -285,7 +285,7 @@ def cli(): parser.add_argument("--output_directory", "-o", type=str, default=".", help="Directory to save the transcription outputs.") - parser.add_argument("--output_format", "-f", type=str, default="txt", + parser.add_argument("--output_format", "-of", type=str, default="txt", choices=["txt", "json", "md", "html"], help="Format of the output file; defaults to txt.")