Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ def clone_or_update_repo():
|
|
68 |
|
69 |
# スケジューラを実行する関数(1分ごと)
|
70 |
def run_scheduler():
|
71 |
-
schedule.every(
|
72 |
try:
|
73 |
while True:
|
74 |
schedule.run_pending()
|
|
|
68 |
|
69 |
# スケジューラを実行する関数(1分ごと)
|
70 |
def run_scheduler():
|
71 |
+
schedule.every(60).minutes.do(clone_or_update_repo)
|
72 |
try:
|
73 |
while True:
|
74 |
schedule.run_pending()
|