6 lines
79 B
Python
6 lines
79 B
Python
import time
|
|
|
|
if __name__ == "__main__":
|
|
while True:
|
|
time.sleep(30)
|