From a585f3ed2cfaef527861b420b2cb49414a96617d Mon Sep 17 00:00:00 2001 From: Alex Orid Date: Mon, 21 Sep 2020 03:57:45 -0400 Subject: [PATCH] Altered __main__ Also added git ignore for /tts/ --- .gitignore | 2 ++ tts.py | 10 +--------- 2 files changed, 3 insertions(+), 9 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7fa8bec --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +tts/ diff --git a/tts.py b/tts.py index 00d3e74..04f3123 100644 --- a/tts.py +++ b/tts.py @@ -105,12 +105,4 @@ def get_tts_dir(): if __name__ == "__main__": print("Enter Text: ") textInput = str(input()) - print("Custom FileName? y/n: ") - bool_string = str(input()) - - if bool_string == "y": - print("Enter FileName: ") - fileName = str(input()) - tts(textInput, fileName) - else: - tts(textInput) + tts(textInput)