Refactor sleep logic in main.py and update status_send.py

This commit is contained in:
sHa
2024-04-08 13:10:29 +03:00
parent d890781080
commit 1e95d9e72a
2 changed files with 6 additions and 2 deletions

View File

@@ -38,7 +38,10 @@ def main(source: str = "autodetect", destination: str = "mattermost"):
status_curr = status
if not status_result:
continue
time.sleep(status.get("duration") or SLEEP_TIME)
sleep = status.get("remaining_time") or status.get("duration")
if sleep is None or sleep <= 0:
sleep = SLEEP_TIME
time.sleep(sleep)
if __name__ == "__main__":