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)