We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7326439 commit 362f5b4Copy full SHA for 362f5b4
1 file changed
netbox_inventory/forms/bulk.py
@@ -1,3 +1,7 @@
1
+from django import forms
2
+from django.core.exceptions import ObjectDoesNotExist
3
+from django.utils.text import slugify
4
+
5
from dcim.models import (
6
Device,
7
DeviceType,
@@ -11,9 +15,6 @@
11
15
RackType,
12
16
Site,
13
17
)
14
-from django import forms
-from django.core.exceptions import ObjectDoesNotExist
-from django.utils.text import slugify
18
from netbox.forms import NetBoxModelBulkEditForm, NetBoxModelImportForm
19
from tenancy.models import Contact, ContactGroup, Tenant
20
from utilities.forms import add_blank_choice
0 commit comments