Spaces:
Sleeping
Sleeping
Remove trailing slash
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ app = Flask(__name__)
|
|
6 |
def index():
|
7 |
return "<p>Hello, World!</p>"
|
8 |
|
9 |
-
@app.route("/predict
|
10 |
def predict():
|
11 |
return {"output": "prediction"}
|
12 |
|
|
|
6 |
def index():
|
7 |
return "<p>Hello, World!</p>"
|
8 |
|
9 |
+
@app.route("/predict")
|
10 |
def predict():
|
11 |
return {"output": "prediction"}
|
12 |
|