Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thraxil committed Aug 2, 2016
1 parent 9573394 commit 0f4d1cd
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions djangowind/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

from django.conf import settings
from django.contrib.auth.models import User, Group
from django.core.exceptions import ImproperlyConfigured
from warnings import warn
from django_statsd.clients import statsd
from xml.dom.minidom import parseString
from xml.etree import ElementTree

try:
from urllib.request import Request
Expand Down Expand Up @@ -33,12 +38,6 @@
except ImportError:
pass

from django.core.exceptions import ImproperlyConfigured
from warnings import warn
from django_statsd.clients import statsd
from xml.dom.minidom import parseString
from xml.etree import ElementTree


def validate_wind_ticket(ticketid):
"""
Expand Down

0 comments on commit 0f4d1cd

Please sign in to comment.