audit: fix import order

This commit is contained in:
Jens Langhammer 2020-01-02 13:20:41 +01:00
parent 387f3c981f
commit 2d7e70eebf
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
"""audit event tests"""
from django.contrib.contenttypes.models import ContentType
from django.test import TestCase
from guardian.shortcuts import get_anonymous_user
from django.contrib.contenttypes.models import ContentType
from passbook.core.models import Policy
from passbook.audit.models import Event, EventAction
from passbook.core.models import Policy
class TestAuditEvent(TestCase):