0 votes
in Celery by

Consider a file tasks.py with:

@app.task

def add(x, y):

  return x + y

After executing:

from tasks import add

What will be the output of:

<<< add.name

a) error

b) tasks.add’

c) name not defined

d) None of the options

1 Answer

0 votes
by

b) tasks.add’

...