From 3ca03d3d891e278472c286feaf42421d45db9893 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Mon, 7 Aug 2023 12:46:10 -0500 Subject: [PATCH] Remove excess import --- netbox/dcim/tests/test_cablepaths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/tests/test_cablepaths.py b/netbox/dcim/tests/test_cablepaths.py index 7b59ec90a..f302e7401 100644 --- a/netbox/dcim/tests/test_cablepaths.py +++ b/netbox/dcim/tests/test_cablepaths.py @@ -4,7 +4,7 @@ from circuits.models import * from dcim.choices import LinkStatusChoices from dcim.models import * from dcim.svg import CableTraceSVG -from dcim.utils import object_to_path_node, path_node_to_object +from dcim.utils import object_to_path_node class CablePathTestCase(TestCase):