Make variable

This commit is contained in:
2025-07-28 22:52:32 -04:00
parent cb7ae67fd7
commit 6bcacd8a97

View File

@ -7,7 +7,7 @@ from datetime import datetime
# Changable optonis:
message = "Testing testing testing..."
max_iterations = 5
msg_delay = 0.2
# Autocomplete path stuffs:
def complete_path(text, state):
@ -61,6 +61,6 @@ try:
with open(file_path, "a") as file:
file.write(tm + '\n')
time.sleep(.2)
time.sleep(msg_delay)
except KeyboardInterrupt:
print("Ctrl-C hit; exiting...")