Reorder imports to appease the linting gods

This commit is contained in:
Alexander Dutton 2017-08-04 11:15:37 +01:00
parent 9720b4be0e
commit ab56369e98

View File

@ -16,9 +16,8 @@ from rest_framework import (
HTTP_HEADER_ENCODING, exceptions, permissions, renderers, status
)
from rest_framework.authentication import (
BaseAuthentication, BasicAuthentication, SessionAuthentication,
TokenAuthentication,
RemoteUserAuthentication)
BaseAuthentication, BasicAuthentication, RemoteUserAuthentication, SessionAuthentication,
TokenAuthentication)
from rest_framework.authtoken.models import Token
from rest_framework.authtoken.views import obtain_auth_token
from rest_framework.compat import is_authenticated