Cleaning up some flake8 errors, pyflakes in this case

This commit is contained in:
Matthew Jones
2015-02-10 17:00:09 -05:00
parent 20a8e98326
commit bb3732b2c1
16 changed files with 22 additions and 83 deletions

View File

@@ -3,5 +3,5 @@
from __future__ import absolute_import
from .decorator_paginated import *
from .job_tasks import *
from .decorator_paginated import PaginatedDecoratorTests # noqa
from .job_tasks import JobTasksTests # noqa

View File

@@ -1,20 +1,10 @@
# Copyright (c) 2014 Ansible, Inc.
# All Rights Reserved.
from datetime import datetime
from django.conf import settings
from django.contrib.auth.models import User
from django.core.urlresolvers import reverse
from django.test import LiveServerTestCase
from django.test.utils import override_settings
from rest_framework.test import APIClient
import mock
from awx.api.views import JobJobTasksList
from awx.main.models import Job, JobTemplate, JobEvent
from awx.main.tests.jobs import BaseJobTestMixin