From 173c3399932781a3c117c2b8e5413282ab075540 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 26 Jul 2024 15:35:08 -0400 Subject: [PATCH] Update import statements for Strawberry 0.236.0 --- netbox/utilities/testing/api.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/netbox/utilities/testing/api.py b/netbox/utilities/testing/api.py index 62ac817e2..7bb349a66 100644 --- a/netbox/utilities/testing/api.py +++ b/netbox/utilities/testing/api.py @@ -19,10 +19,9 @@ from .base import ModelTestCase from .utils import disable_warnings from ipam.graphql.types import IPAddressFamilyType -from strawberry.field import StrawberryField -from strawberry.lazy_type import LazyType -from strawberry.type import StrawberryList, StrawberryOptional -from strawberry.union import StrawberryUnion +from strawberry.types.lazy_type import LazyType +from strawberry.types.base import StrawberryList, StrawberryOptional +from strawberry.types.union import StrawberryUnion __all__ = ( 'APITestCase',