default n mesi

This commit is contained in:
Alessandro Battilani
2026-01-20 09:21:49 +01:00
parent 1081ba9e1b
commit c11f7eaa7b

View File

@@ -34,7 +34,7 @@ def main():
print(f"Errore connessione: {e}")
return
stringa_mounths_limit = input("\n Quanti mesi vuoi tenere in linea? ")
stringa_mounths_limit = input("\n Quanti mesi vuoi tenere in linea? (default 3)") or '3'
# Convertiamo la stringa in un numero intero
MONTHS_LIMIT = int(stringa_mounths_limit)