Flask - Ecosystem and Patterns
Identify the issue in this async Flask route:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
await some_async_task()
return 'Finished'