fix for True() vs True

This commit is contained in:
Sean Corrigan 2022-04-03 23:45:34 -04:00
parent ae7d734e7f
commit f54918159d

View File

@ -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)