From 5a60bdd3083103167c5ec9e5a597edf94dc89631 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Tue, 27 Aug 2019 15:55:31 -0400 Subject: [PATCH] Remove unsed / duplicate imports for iosxr module_utils (#61385) Signed-off-by: Paul Belanger --- lib/ansible/module_utils/network/iosxr/facts/facts.py | 2 -- .../module_utils/network/iosxr/facts/interfaces/interfaces.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/ansible/module_utils/network/iosxr/facts/facts.py b/lib/ansible/module_utils/network/iosxr/facts/facts.py index 8a740d3aefd..39742a2e5a9 100644 --- a/lib/ansible/module_utils/network/iosxr/facts/facts.py +++ b/lib/ansible/module_utils/network/iosxr/facts/facts.py @@ -23,8 +23,6 @@ from ansible.module_utils.network.iosxr.facts.interfaces.interfaces import Inter from ansible.module_utils.network.iosxr.facts.lag_interfaces.lag_interfaces import Lag_interfacesFacts from ansible.module_utils.network.iosxr.facts.legacy.base import Default, Hardware, Interfaces, Config from ansible.module_utils.network.iosxr.facts.l2_interfaces.l2_interfaces import L2_InterfacesFacts -from ansible.module_utils.network.iosxr.facts.legacy.\ - base import Default, Hardware, Interfaces, Config FACT_LEGACY_SUBSETS = dict( diff --git a/lib/ansible/module_utils/network/iosxr/facts/interfaces/interfaces.py b/lib/ansible/module_utils/network/iosxr/facts/interfaces/interfaces.py index 5dec4d23cbe..8ec4258d0bd 100644 --- a/lib/ansible/module_utils/network/iosxr/facts/interfaces/interfaces.py +++ b/lib/ansible/module_utils/network/iosxr/facts/interfaces/interfaces.py @@ -16,7 +16,7 @@ __metaclass__ = type from copy import deepcopy import re from ansible.module_utils.network.common import utils -from ansible.module_utils.network.iosxr.utils.utils import get_interface_type, normalize_interface +from ansible.module_utils.network.iosxr.utils.utils import get_interface_type from ansible.module_utils.network.iosxr.argspec.interfaces.interfaces import InterfacesArgs