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