1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Move object_type_identifier() & object_type_name() to utilities.object_types

This commit is contained in:
Jeremy Stretch
2024-03-21 14:51:50 -04:00
parent 8ad73e3f90
commit 6ac700e43f
11 changed files with 37 additions and 35 deletions

View File

@ -5,7 +5,7 @@ from django.core.exceptions import MultipleObjectsReturned, ObjectDoesNotExist
from django.db.models import Q
from utilities.choices import unpack_grouped_choices
from utilities.utils import object_type_identifier
from utilities.object_types import object_type_identifier
__all__ = (
'CSVChoiceField',