Remove unsed / duplicate imports for iosxr module_utils (#61385)

Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-08-27 15:55:31 -04:00 committed by GitHub
parent 32eeeab831
commit 5a60bdd308
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View file

@ -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.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.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.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( FACT_LEGACY_SUBSETS = dict(

View file

@ -16,7 +16,7 @@ __metaclass__ = type
from copy import deepcopy from copy import deepcopy
import re import re
from ansible.module_utils.network.common import utils 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 from ansible.module_utils.network.iosxr.argspec.interfaces.interfaces import InterfacesArgs