From 510d8e954dc9c24a404b317b28ebce399519ad1a Mon Sep 17 00:00:00 2001 From: zach-withcoherence <86851918+zach-withcoherence@users.noreply.github.com> Date: Tue, 19 Aug 2025 16:10:37 -0400 Subject: [PATCH] different default options --- vote/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vote/app.py b/vote/app.py index 1d194b649b..156ae127f6 100644 --- a/vote/app.py +++ b/vote/app.py @@ -5,8 +5,8 @@ import random import json -option_a = os.getenv('OPTION_A', "Cats") -option_b = os.getenv('OPTION_B', "Dogs") +option_a = os.getenv('OPTION_A', "Baseball") +option_b = os.getenv('OPTION_B', "Basketball") hostname = socket.gethostname() app = Flask(__name__)