Remove unused import in junos/utils/utils.py (#61384)

Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-08-27 15:56:39 -04:00 committed by GitHub
parent 5a60bdd308
commit 5ee81338fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ __metaclass__ = type
from ansible.module_utils.network.junos.junos import tostring
try:
from ncclient.xml_ import new_ele, to_ele, to_xml
from ncclient.xml_ import new_ele, to_ele
HAS_NCCLIENT = True
except ImportError:
HAS_NCCLIENT = False