You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from time import sleep
from celery_once import QueueOnce # type: ignore
from background.celery import celery_app
@celery_app.task(base=QueueOnce)
def add(x: int, y: int) -> int:
sleep(20)
return x + y
When I go to shell by ./manage.py shell and simply import the task, I get the following:
Python 3.12.8 (main, Dec 4 2024, 20:39:59) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from users.tasks import add
/usr/local/lib/python3.12/site-packages/celery_once/tasks.py:78: SyntaxWarning: invalid escape sequence '\*'
"""
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
here is my stack:
Here is the basic task I made:
When I go to shell by
./manage.py shell
and simply import the task, I get the following:Thanks!
The text was updated successfully, but these errors were encountered: