1
0

Loop
Some checks failed
Run Python tests (through Pytest) / Test (push) Failing after 23s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 22s

This commit is contained in:
Jon Michael Aanes 2024-12-19 14:27:26 +01:00
parent fafb64d57d
commit e9bd522282

View File

@ -1,4 +1,5 @@
import feedparser
import time
import requests
import secret_loader
@ -48,8 +49,9 @@ def check_for_new_updates():
def main():
check_for_new_updates()
while True:
check_for_new_updates()
time.sleep(600)
if __name__ == '__main__':
main()