Flask - Ecosystem and Patterns
Given this factory function, what will
print(app.config['TESTING']) output?def create_app():
app = Flask(__name__)
app.config['TESTING'] = True
return app
app = create_app()