Fix lint.

This commit is contained in:
fakepoet 2019-05-05 14:28:00 +08:00
parent c432f1ff84
commit d9f4bf8570

View File

@ -1,15 +1,14 @@
import unittest import unittest
from django.conf.urls import include, url from django.conf.urls import include, url
from django.test import TestCase, override_settings from django.test import TestCase, override_settings
from rest_framework import serializers from rest_framework import serializers
from rest_framework.compat import coreapi from rest_framework.compat import coreapi
from rest_framework.decorators import action from rest_framework.decorators import action
from rest_framework.response import Response
from rest_framework.routers import SimpleRouter from rest_framework.routers import SimpleRouter
from rest_framework.schemas import get_schema_view from rest_framework.schemas import get_schema_view
from rest_framework.response import Response
from rest_framework.test import APIClient, APIRequestFactory from rest_framework.test import APIClient, APIRequestFactory
from rest_framework.viewsets import GenericViewSet from rest_framework.viewsets import GenericViewSet