Remove extraneous imports

This commit is contained in:
Jeremy Stretch 2019-04-19 16:58:39 -04:00
parent 017a5011ec
commit 46b3512c45
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from collections import OrderedDict
from django.conf import settings
from django.db.models import Count, F, OuterRef, Subquery
from django.db.models import Count, F
from django.http import HttpResponseForbidden
from django.shortcuts import get_object_or_404
from drf_yasg import openapi

View File

@ -1,5 +1,5 @@
from django.conf import settings
from django.db.models import Count, OuterRef, Subquery
from django.db.models import Count
from django.shortcuts import get_object_or_404
from rest_framework import status
from rest_framework.decorators import action