Skip to content

Commit

Permalink
fix isort linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thijskramer authored and loicteixeira committed Jun 26, 2018
1 parent 5f4d611 commit 57019c4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions core/models.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
from operator import itemgetter

from bs4 import BeautifulSoup
from core import panels
from core.forms import SubmitFormBuilder
from core.utilities import has_recaptcha, validate_only_one_instance
from django.core.exceptions import ObjectDoesNotExist
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
from django.db import models
from django.db.models import Count
from django.db.models import Count, Q
from django.utils.encoding import python_2_unicode_compatible
from django.utils.html import mark_safe
from modelcluster.fields import ParentalKey
Expand All @@ -18,10 +21,6 @@
from wagtail.wagtailsearch import index
from wagtailcaptcha.models import WagtailCaptchaEmailForm

from core import panels
from core.forms import SubmitFormBuilder
from core.utilities import has_recaptcha, validate_only_one_instance


class IndexPage(models.Model):
"""
Expand Down

0 comments on commit 57019c4

Please sign in to comment.