fix: catch KeyboardInterrupt for clean Ctrl+C exit

This commit is contained in:
Oliver Hofmann 2026-05-17 13:59:52 +02:00
parent 24cbea0c97
commit b69398803c

View File

@ -130,4 +130,8 @@ def main():
if __name__ == "__main__":
main()
try:
main()
except KeyboardInterrupt:
print("\nAbgebrochen.")