Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,7 @@ def update_status():
|
|
111 |
# 주기적 업데이트를 위한 함수
|
112 |
def periodic_update(status_html):
|
113 |
while True:
|
114 |
-
time.sleep(
|
115 |
new_status = update_status()
|
116 |
status_html.update(value=new_status)
|
117 |
|
|
|
111 |
# 주기적 업데이트를 위한 함수
|
112 |
def periodic_update(status_html):
|
113 |
while True:
|
114 |
+
time.sleep(60) # 10초 대기
|
115 |
new_status = update_status()
|
116 |
status_html.update(value=new_status)
|
117 |
|