From 4adf307c688749b95a3d7eb727222d5670c2d7a0 Mon Sep 17 00:00:00 2001 From: TheHumanRobot <75536101+TheHumanRobot@users.noreply.github.com> Date: Tue, 4 Jan 2022 07:20:41 -0500 Subject: [PATCH] Update PrerollUpdate.py Fixed issue where this script would not execute on it's own --- PrerollUpdate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PrerollUpdate.py b/PrerollUpdate.py index 4c08d31..0e24231 100644 --- a/PrerollUpdate.py +++ b/PrerollUpdate.py @@ -209,3 +209,5 @@ def update(): print('Pre-roll updated') # Closing file f.close() +if __name__ == '__main__': + update()