diff --git a/app.py b/app.py index fb918170b..374ec7343 100644 --- a/app.py +++ b/app.py @@ -3,10 +3,6 @@ app = Flask(__name__) @app.route('/') -def main(): - return redirect('/index') - -@app.route('/index') def index(): return render_template('index.html')