From 9133de216d1ef4c97df76fa924abf739a1d4a9db Mon Sep 17 00:00:00 2001 From: Morgan Barber Date: Mon, 17 Jun 2024 04:13:46 +0000 Subject: [PATCH] Remove unused argument and fix github being weird --- main.py | 1 - utils/.config.template.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/main.py b/main.py index 80a119d..9e8f3ae 100755 --- a/main.py +++ b/main.py @@ -84,7 +84,6 @@ if __name__ == "__main__": parser = argparse.ArgumentParser(description="Reddit Video Maker Bot") parser.add_argument("--post-id", help="Specify the post ID") parser.add_argument("--run-many", type=int, help="Run the program multiple times") - parser.add_argument("--id") args = parser.parse_args() if sys.version_info.major != 3 or sys.version_info.minor not in [10, 11]: print( diff --git a/utils/.config.template.toml b/utils/.config.template.toml index 6586909..f4a3af0 100644 --- a/utils/.config.template.toml +++ b/utils/.config.template.toml @@ -45,7 +45,7 @@ background_thumbnail_font_color = { optional = true, default = "255,255,255", ex [settings.tts] voice_choice = { optional = false, default = "tiktok", options = ["elevenlabs", "streamlabspolly", "tiktok", "googletranslate", "awspolly", "pyttsx", ], example = "tiktok", explanation = "The voice platform used for TTS generation. " } -random_voice = { optional = false, default = true, example = true, type = "bool", options = [true, false,], explanation = "Randomizes the voice used for each comment" } +random_voice = { optional = false, type = "bool", default = true, example = true, options = [true, false,], explanation = "Randomizes the voice used for each comment" } elevenlabs_voice_name = { optional = false, default = "Bella", example = "Bella", explanation = "The voice used for elevenlabs", options = ["Adam", "Antoni", "Arnold", "Bella", "Domi", "Elli", "Josh", "Rachel", "Sam", ] } elevenlabs_api_key = { optional = true, example = "21f13f91f54d741e2ae27d2ab1b99d59", explanation = "Elevenlabs API key" } aws_polly_voice = { optional = false, default = "Matthew", example = "Matthew", explanation = "The voice used for AWS Polly" }