Skip to content

Commit

Permalink
refactor(channels): Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
elisa-a-v committed Nov 8, 2024
1 parent fa9e7bf commit de73491
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions bc/channel/signals.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import logging

from django.conf import settings
from django.db.models.signals import post_save
from django.dispatch import receiver
Expand All @@ -13,8 +11,6 @@

queue = get_queue("default")

logger = logging.getLogger(__name__)


@receiver(post_save, sender=Group)
def group_handler(sender, instance=None, created=False, **kwargs):
Expand Down
4 changes: 0 additions & 4 deletions bc/channel/tasks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import logging

from django.conf import settings
from django_rq.queues import get_queue
from rq import Retry
Expand All @@ -8,8 +6,6 @@

queue = get_queue("default")

logger = logging.getLogger(__name__)


def enqueue_text_status_for_channel(channel: Channel, text: str) -> None:
"""
Expand Down

0 comments on commit de73491

Please sign in to comment.