From 6282c15549abff6e3e9807fd12ddcad0f4bd8c47 Mon Sep 17 00:00:00 2001 From: Vicky Koblinski Date: Mon, 25 Jan 2021 13:26:19 -0500 Subject: [PATCH] Batman or joker --- vote/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vote/app.py b/vote/app.py index 1d194b6..1ecff7c 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', "Batman") +option_b = os.getenv('OPTION_B', "Joker") hostname = socket.gethostname() app = Flask(__name__)