|
@@ -2,12 +2,12 @@ import os
|
|
|
|
|
|
from celery import Celery
|
|
|
|
|
|
-os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'emus.settings')
|
|
|
-app = Celery('emus')
|
|
|
-app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
|
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "emus.settings")
|
|
|
+app = Celery()
|
|
|
+app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
|
app.autodiscover_tasks()
|
|
|
|
|
|
|
|
|
@app.task(bind=True)
|
|
|
def debug_task(self):
|
|
|
- print(f'Request: {self.request!r}')
|
|
|
+ print(f"Request: {self.request!r}")
|