Flask - Performance Optimization
You added ProfilerMiddleware but see no profiling output. What is the most likely mistake in this code?
from flask import Flask
from werkzeug.middleware.profiler import ProfilerMiddleware
app = Flask(__name__)
app = ProfilerMiddleware(app, restrictions=[10])
@app.route('/')
def index():
return 'Test'