Flask - Ecosystem and Patterns
Examine this Flask route code:
Why might this code cause an IndentationError?
from flask import Flask
app = Flask(__name__)
@app.route('/data')
def data():
return 'Data'Why might this code cause an IndentationError?
