Skip to content
This repository has been archived by the owner on May 5, 2021. It is now read-only.

[DRH-2]: Remove unused imports #70

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rest_hooks/migrations/0002_swappable_hook_model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from django.db import migrations, models
from django.db import migrations


class Migration(migrations.Migration):
Expand Down
2 changes: 1 addition & 1 deletion rest_hooks/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import json

from rest_hooks.signals import hook_event, raw_hook_event, hook_sent_event
from rest_hooks.utils import distill_model_event, get_hook_model, get_module, find_and_fire_hook
from rest_hooks.utils import distill_model_event, get_module


if getattr(settings, 'HOOK_CUSTOM_MODEL', None) is None:
Expand Down
2 changes: 0 additions & 2 deletions rest_hooks/south_migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models


class Migration(SchemaMigration):
Expand Down