mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
fix import in junos_command module (#4927)
This fixes the import statements in the junos_command module to be consistent with all junos_* modules
This commit is contained in:
committed by
Matt Clay
parent
82cf70e0f3
commit
b9cb9d6345
@@ -154,10 +154,12 @@ failed_conditionals:
|
||||
"""
|
||||
import re
|
||||
|
||||
import ansible.module_utils.junos
|
||||
|
||||
from ansible.module_utils.basic import get_exception
|
||||
from ansible.module_utils.network import NetworkModule, NetworkError
|
||||
from ansible.module_utils.netcli import CommandRunner
|
||||
from ansible.module_utils.netcli import AddCommandError, FailedConditionsError
|
||||
from ansible.module_utils.junos import NetworkModule, NetworkError
|
||||
|
||||
VALID_KEYS = {
|
||||
'cli': frozenset(['command', 'output', 'prompt', 'response']),
|
||||
|
||||
Reference in New Issue
Block a user