Apparently the linter on Travis wants the imports in a different order than on my box...

This commit is contained in:
Sander Steffann 2017-11-22 13:49:53 +01:00
parent 6505b7240a
commit 19ee862c51

View File

@ -4,7 +4,6 @@ from __future__ import unicode_literals
import re
from collections import MutableMapping, OrderedDict
import coreapi
import pytest
from django.conf.urls import include, url
from django.core.cache import cache
@ -15,6 +14,7 @@ from django.utils import six
from django.utils.safestring import SafeText
from django.utils.translation import ugettext_lazy as _
import coreapi
from rest_framework import permissions, serializers, status
from rest_framework.renderers import (
AdminRenderer, BaseRenderer, BrowsableAPIRenderer, DocumentationRenderer,