We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2479424 commit b85c503Copy full SHA for b85c503
celery_haystack/signals.py
@@ -3,8 +3,8 @@
3
from haystack.signals import BaseSignalProcessor
4
from haystack.exceptions import NotHandled
5
6
-from celery_haystack.utils import enqueue_task
7
-from celery_haystack.indexes import CelerySearchIndex
+from .utils import enqueue_task
+from .indexes import CelerySearchIndex
8
9
10
class CelerySignalProcessor(BaseSignalProcessor):
celery_haystack/utils.py
@@ -7,7 +7,7 @@
from haystack.utils import get_identifier
-from celery_haystack.conf import settings
+from .conf import settings
11
12
13
def get_update_task(task_path=None):
0 commit comments