Flask - Background Tasks
Given the following code, what will be the output when
add.delay(4, 5) is called?
from celery import Celery
celery_app = Celery('tasks')
@celery_app.task
def add(x, y):
return x + y
result = add.delay(4, 5)
print(type(result))