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

Move title() from utilities.utils to utilities.string

This commit is contained in:
Jeremy Stretch
2024-03-21 12:06:28 -04:00
parent 73bb175afa
commit 950954a3db
6 changed files with 19 additions and 11 deletions

View File

@ -11,7 +11,8 @@ from rest_framework.views import get_view_name as drf_get_view_name
from extras.constants import HTTP_CONTENT_TYPE_JSON
from netbox.api.exceptions import GraphQLTypeNotFound, SerializerNotFound
from netbox.api.fields import RelatedObjectCountField
from .utils import count_related, dict_to_filter_params, dynamic_import, title
from .string import title
from .utils import count_related, dict_to_filter_params, dynamic_import
__all__ = (
'get_annotations_for_serializer',