Flask - Background Tasks
You wrote this Celery task in your Flask app:
@celery_app.task def add(x, y): return x + yBut when you call
add.delay(2, 3), it raises an IndentationError. What is the problem?