diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 09:30:54 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 09:30:54 +0000 |
commit | 0e5127432202b460919e7f59dd34239721114905 (patch) | |
tree | 09355287dd815359a9a86f3042a38b62db09761d | |
parent | fd9ee5dcdccafd9087565c09962502382ccc2d2e (diff) |
Tue, Jul 9, 2024, 2:30 AM -07:00
-rw-r--r-- | wk9/lect/froshims/app.py | 2 |
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") |