1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Cleaned up imports

This commit is contained in:
Jeremy Stretch
2018-07-16 17:09:21 -04:00
parent 8bc8cf5e2d
commit 9e2ac7b3f4
3 changed files with 7 additions and 10 deletions

View File

@ -1,15 +1,13 @@
import time
from importlib import import_module
from django.db.models.signals import post_save, post_delete
from django.conf import settings
from django.core.cache import caches
from django.db.models import Q
from django.dispatch import Signal
from django.contrib.contenttypes.models import ContentType
from django.db.models import Q
from django.db.models.signals import post_save, post_delete
from django.dispatch import Signal
from utilities.utils import dynamic_import
from extras.models import Webhook
from utilities.utils import dynamic_import
def enqueue_webhooks(webhooks, model_class, data, event, signal_received_timestamp):