From 4439fd23b001b27366c1703efdcb717db602705b Mon Sep 17 00:00:00 2001 From: Matt Chan Date: Thu, 25 Jun 2020 13:36:20 -0700 Subject: [PATCH] Fixed errors in app.py --- app.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app.py b/app.py index a9d086ced..6ad8b47ca 100644 --- a/app.py +++ b/app.py @@ -8,11 +8,7 @@ @app.route('/', methods=('GET', 'POST')) def index(): """Render the app's main page.""" -<<<<<<< HEAD if request.method == 'GET': -======= - if request.methods == 'GET': ->>>>>>> ff0444aa864f91688c632ff0f143c4d5ae6e6317 # Default gives IBM's ticker when first loaded. symbol = 'IBM' return render_template('index.html', symbol=symbol)