Fix up flake8 runtime configuration, do a bit of flake8 work as it

relates to pyflakes)
This commit is contained in:
Matthew Jones
2015-02-05 10:40:22 -05:00
parent 6a77c5dbab
commit 888ae53027
7 changed files with 39 additions and 42 deletions

View File

@@ -4,18 +4,15 @@
# Python
import inspect
import logging
import json
import time
# Django
from django.http import Http404
from django.conf import settings
from django.contrib.auth.models import User
from django.db import connection
from django.shortcuts import get_object_or_404
from django.template.loader import render_to_string
from django.utils.safestring import mark_safe
from django.utils.timezone import now
# Django REST Framework
from rest_framework.authentication import get_authorization_header
@@ -27,8 +24,8 @@ from rest_framework import status
from rest_framework import views
# AWX
from awx.main.models import *
from awx.main.utils import *
from awx.main.models import * # noqa
from awx.main.utils import * # noqa
__all__ = ['APIView', 'GenericAPIView', 'ListAPIView', 'SimpleListAPIView',
'ListCreateAPIView', 'SubListAPIView', 'SubListCreateAPIView',