Flask - Background Tasks
Identify the error in this Flask route for checking task status:
@app.route('/status/<task_id>')
def status(task_id):
state = tasks[task_id]
return {'task': task_id, 'status': state}