Flask - Ecosystem and Patterns
You wrote this Flask code but get an error when running it:
from flask import Flask
app = Flask(__name__)
@app.route('/hello')
def hello():
print('Hello World!')
What is the main issue causing the error?