Skip to content

Commit

Permalink
Fixed errors in app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thewchan committed Jun 25, 2020
1 parent 736756a commit 4439fd2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4439fd2

Please sign in to comment.