Flask - Ecosystem and Patterns
Identify the error in this factory function:
def create_app():
app = Flask(__name__)
db = SQLAlchemy(app)
return app
app = create_app()