2
0
Эх сурвалжийг харах

Remove extraneous imports

Jeremy Stretch 7 жил өмнө
parent
commit
46b3512c45

+ 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