Spaces:
Runtime error
Runtime error
Rename app.py to flask_app.py
Browse files- app.py → flask_app.py +1 -1
app.py → flask_app.py
RENAMED
|
@@ -135,7 +135,7 @@ examples = [
|
|
| 135 |
|
| 136 |
|
| 137 |
@app.route("/", methods=['GET', 'POST'])
|
| 138 |
-
def
|
| 139 |
if request.method == 'POST':
|
| 140 |
if 'file' and 'file1' not in request.files:
|
| 141 |
flash('No file part')
|
|
|
|
| 135 |
|
| 136 |
|
| 137 |
@app.route("/", methods=['GET', 'POST'])
|
| 138 |
+
def index():
|
| 139 |
if request.method == 'POST':
|
| 140 |
if 'file' and 'file1' not in request.files:
|
| 141 |
flash('No file part')
|