From 5c83ea0b49d334c84becfbbadbc8223bf59472cb Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Fri, 13 Nov 2020 19:09:56 -0500 Subject: [PATCH] fixed requirements 2 --- PIcontroller.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/PIcontroller.py b/PIcontroller.py index ec07fa5..bafa29c 100644 --- a/PIcontroller.py +++ b/PIcontroller.py @@ -3,7 +3,7 @@ LoveBOXAPIapi = '101010' from display import sendUpdate import requests -import sleep +import time def listfromAPI(message): queueList = [] @@ -39,5 +39,7 @@ def main(): if __name__ == "__main__": while True: main() - sleep(10) + for i in range(1,10): + print(i) + sleep(1) \ No newline at end of file