This commit is contained in:
Kellermann 2022-06-01 20:51:11 +02:00
parent 3d84b916d3
commit 318d835c88

View File

@ -161,7 +161,10 @@ def find_todays_product_from_db():
return product
if __name__ == "__main__":
start_challenges()
sys.exit(-1)
set_todays_product()
try:
start_challenges()
sys.exit(-1)
except KeyboardInterrupt:
print("Ending")
sys.exit(-1)