summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wk9/lect/froshims/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wk9/lect/froshims/app.py b/wk9/lect/froshims/app.py
index 8d866f7..de6ec44 100644
--- a/wk9/lect/froshims/app.py
+++ b/wk9/lect/froshims/app.py
@@ -2,6 +2,6 @@ from flask import Flask, render_template, request
app = Flask(__name__)
-@app.route("/", methods=["GET", "POST"])
+@app.route("/")
def index():
return render_template("index.html")