Browse Source

Remove extraneous imports

Jeremy Stretch 6 years ago
parent
commit
46b3512c45
2 changed files with 2 additions and 2 deletions
  1. 1 1
      netbox/dcim/api/views.py
  2. 1 1
      netbox/ipam/api/views.py

+ 1 - 1
netbox/dcim/api/views.py

@@ -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

+ 1 - 1
netbox/ipam/api/views.py

@@ -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