From a9289a388a9ac65a0453c877d39c5b995a19e0d4 Mon Sep 17 00:00:00 2001 From: ART3MISTICAL <68769374+ART3MISTICAL@users.noreply.github.com> Date: Sun, 19 Jun 2022 01:44:00 +0530 Subject: [PATCH] Converted spaces into tabs For smaller file sizes and because why not --- main.py | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/main.py b/main.py index b4e1123..6bf13bf 100755 --- a/main.py +++ b/main.py @@ -24,7 +24,7 @@ print( load_dotenv() # Modified by JasonLovesDoggo print_markdown( - "### Thanks for using this tool! [Feel free to contribute to this project on GitHub!](https://lewismenelaws.com) If you have any questions, feel free to reach out to me on Twitter or submit a GitHub issue. You can find solutions to many common problems in the [Documentation](https://luka-hietala.gitbook.io/documentation-for-the-reddit-bot/)" + "### Thanks for using this tool! [Feel free to contribute to this project on GitHub!](https://lewismenelaws.com) If you have any questions, feel free to reach out to me on Twitter or submit a GitHub issue. You can find solutions to many common problems in the [Documentation](https://luka-hietala.gitbook.io/documentation-for-the-reddit-bot/)" ) time.sleep(1) @@ -37,37 +37,37 @@ reddit2fa = getenv("REDDIT_2FA") def main(): - cleanup() + cleanup() - def get_obj(): - reddit_obj = get_subreddit_threads() - return reddit_obj + def get_obj(): + reddit_obj = get_subreddit_threads() + return reddit_obj - reddit_object = get_obj() - length, number_of_comments = save_text_to_mp3(reddit_object) - download_screenshots_of_reddit_posts(reddit_object, number_of_comments) - download_background() - chop_background_video(length) - make_final_video(number_of_comments, length) + reddit_object = get_obj() + length, number_of_comments = save_text_to_mp3(reddit_object) + download_screenshots_of_reddit_posts(reddit_object, number_of_comments) + download_background() + chop_background_video(length) + make_final_video(number_of_comments, length) def run_many(times): - for x in range(times): - x = x + 1 - print_step( - f'on the {x}{("st" if x == 1 else ("nd" if x == 2 else ("rd" if x == 3 else "th")))} iteration of {times}' - ) # correct 1st 2nd 3rd 4th 5th.... - main() - Popen("cls" if name == "nt" else "clear", shell=True).wait() + for x in range(times): + x = x + 1 + print_step( + f'on the {x}{("st" if x == 1 else ("nd" if x == 2 else ("rd" if x == 3 else "th")))} iteration of {times}' + ) # correct 1st 2nd 3rd 4th 5th.... + main() + Popen("cls" if name == "nt" else "clear", shell=True).wait() if __name__ == "__main__": - try: - if getenv("TIMES_TO_RUN") and isinstance(int(getenv("TIMES_TO_RUN")), int): - run_many(int(getenv("TIMES_TO_RUN"))) - else: - main() - except KeyboardInterrupt: - print_markdown("## Clearing temp files") - cleanup() - exit() + try: + if getenv("TIMES_TO_RUN") and isinstance(int(getenv("TIMES_TO_RUN")), int): + run_many(int(getenv("TIMES_TO_RUN"))) + else: + main() + except KeyboardInterrupt: + print_markdown("## Clearing temp files") + cleanup() + exit()