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’

Related questions

0 votes
asked Jun 19, 2022 in Celery by john ganales
0 votes
0 votes
asked Apr 4, 2020 in Data Handling by amita rallin
...