Used isort to order all import statements

This commit is contained in:
Raphael Michel
2015-07-19 20:46:34 +02:00
parent c2971d28a6
commit e828d711bd
107 changed files with 353 additions and 244 deletions

View File

@@ -1,4 +1,5 @@
import os.path
from django.test import TestCase
# Do NOT use relative imports here

View File

@@ -4,9 +4,8 @@ from django.test import TestCase
from django.utils.timezone import now
from pretix.base.models import (
Event, Organizer, Item, Property, PropertyValue, ItemVariation
Event, Item, ItemVariation, Organizer, Property, PropertyValue,
)
# Do NOT use relative imports here
from pretix.plugins.timerestriction import signals
from pretix.plugins.timerestriction.models import TimeRestriction