From d01e93535dcc0673a95911bb1e02aa1f5445093d Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 15 Jun 2015 09:36:04 -0400 Subject: [PATCH] Fixing flake8 issue --- awx/main/tests/jobs/jobs_monolithic.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/awx/main/tests/jobs/jobs_monolithic.py b/awx/main/tests/jobs/jobs_monolithic.py index 1596de1c5b..7f3e337503 100644 --- a/awx/main/tests/jobs/jobs_monolithic.py +++ b/awx/main/tests/jobs/jobs_monolithic.py @@ -14,7 +14,6 @@ import urlparse import django.test from django.conf import settings from django.core.urlresolvers import reverse -from django.db.models import Q from django.test.utils import override_settings from django.utils.encoding import smart_str @@ -241,7 +240,7 @@ class JobTemplateTest(BaseJobTestMixin, django.test.TestCase): # We give Juan inventory permission and he can see both Job Templates because he already has deploy permission # Now he can see both job templates - juan_inv_permission = Permission.objects.create( + Permission.objects.create( inventory = self.inv_eng, user = self.user_juan, permission_type = PERM_INVENTORY_READ,