Update main.py

This commit is contained in:
2026-05-28 12:21:32 +00:00
parent ac3e19f564
commit 85ef665eaf
+1 -1
View File
@@ -24,6 +24,6 @@ if __name__ == "__main__":
continue
response = ask(user_input)
print(f"\nAnswer: {response}")
except KeyboardInterrupt:
except (KeyboardInterrupt, EOFError):
print("\nExiting.")
break