From f54918159df4e82a30fc029c4d48528b6d05fc0c Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Sun, 3 Apr 2022 23:45:34 -0400 Subject: [PATCH] fix for True() vs True --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 2a84d1b..3eea0ab 100644 --- a/main.py +++ b/main.py @@ -2,6 +2,7 @@ from typing import List from xmlrpc.client import Boolean from time import sleep import requests, json, os, yt_dlp +from sympy import true apikey = os.environ['apikey'] @@ -56,7 +57,7 @@ def main() -> None: print("Already in Library") if __name__ == "__main__": - while True(): + while True: main() sleep(600) \ No newline at end of file