From 2d7e70eebfe4b5b9e7e868744bf73746b2522827 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 2 Jan 2020 13:20:41 +0100 Subject: [PATCH] audit: fix import order --- passbook/audit/tests/test_event.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passbook/audit/tests/test_event.py b/passbook/audit/tests/test_event.py index 04925f8fc..5e32b2d09 100644 --- a/passbook/audit/tests/test_event.py +++ b/passbook/audit/tests/test_event.py @@ -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):