From 1a1785b6f852a8ac506de9f0c44bae6f1174dfba Mon Sep 17 00:00:00 2001 From: Ghostweaver <84856013+rougeplane@users.noreply.github.com> Date: Thu, 9 Jun 2022 01:20:18 +0500 Subject: [PATCH] Added New variables --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index cade990..8fe3421 100644 --- a/main.py +++ b/main.py @@ -88,7 +88,7 @@ console.log("[bold green]Enviroment Variables are set! Continuing...") if configured: reddit_object = get_subreddit_threads() - length, number_of_comments = save_text_to_mp3(reddit_object) + length, number_of_comments, indices_of_skipped_comments = save_text_to_mp3(reddit_object) download_screenshots_of_reddit_posts( reddit_object, number_of_comments, os.getenv("THEME", "light") ) @@ -97,4 +97,4 @@ if configured: noerror = chop_background_video(length, vidpath) if noerror is True: break - final_video = make_final_video(number_of_comments) + final_video = make_final_video(number_of_comments, indices_of_skipped_comments)