Reintroduce 1 sec sleep

pull/9/head
Jeremiah K 2023-11-27 19:17:49 -06:00
rodzic af4f6d19c0
commit 6e3e3ea4e3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ def execute_meshtastic_command(options):
result = subprocess.run(command, capture_output=True, text=True)
log_to_file("Standard Output:\n" + result.stdout)
log_to_file("Standard Error:\n" + result.stderr)
#time.sleep(1) # Pause for 1 second between commands
time.sleep(1) # Pause for 1 second between commands
if os.path.exists(flag_file):
log_to_file("Commands have already been executed previously. Skipping.")