mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed PEP8 issues (#24030)
This commit is contained in:
parent
7d710882a8
commit
ce99ffe205
3 changed files with 8 additions and 6 deletions
|
@ -34,7 +34,7 @@ import re
|
|||
from ansible.module_utils.basic import env_fallback, return_values
|
||||
from ansible.module_utils.network_common import to_list, ComplexList
|
||||
from ansible.module_utils.connection import exec_command
|
||||
from ansible.module_utils.netcfg import NetworkConfig,ConfigLine
|
||||
from ansible.module_utils.netcfg import NetworkConfig, ConfigLine
|
||||
|
||||
_DEVICE_CONFIGS = {}
|
||||
|
||||
|
@ -56,6 +56,7 @@ dellos10_argument_spec = {
|
|||
'provider': dict(type='dict'),
|
||||
}
|
||||
|
||||
|
||||
def check_args(module, warnings):
|
||||
provider = module.params['provider'] or {}
|
||||
for key in dellos10_argument_spec:
|
||||
|
@ -106,6 +107,7 @@ def run_commands(module, commands, check_rc=True):
|
|||
responses.append(out)
|
||||
return responses
|
||||
|
||||
|
||||
def load_config(module, commands):
|
||||
rc, out, err = exec_command(module, 'configure terminal')
|
||||
if rc != 0:
|
||||
|
@ -122,6 +124,7 @@ def load_config(module, commands):
|
|||
|
||||
exec_command(module, 'end')
|
||||
|
||||
|
||||
def get_sublevel_config(running_config, module):
|
||||
contents = list()
|
||||
current_config_contents = list()
|
||||
|
@ -141,4 +144,3 @@ def get_sublevel_config(running_config, module):
|
|||
sublevel_config = '\n'.join(current_config_contents)
|
||||
|
||||
return sublevel_config
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import re
|
|||
from ansible.module_utils.basic import env_fallback, return_values
|
||||
from ansible.module_utils.network_common import to_list, ComplexList
|
||||
from ansible.module_utils.connection import exec_command
|
||||
from ansible.module_utils.netcfg import NetworkConfig,ConfigLine
|
||||
from ansible.module_utils.netcfg import NetworkConfig, ConfigLine
|
||||
|
||||
_DEVICE_CONFIGS = {}
|
||||
|
||||
|
@ -56,6 +56,7 @@ dellos9_argument_spec = {
|
|||
'provider': dict(type='dict'),
|
||||
}
|
||||
|
||||
|
||||
def check_args(module, warnings):
|
||||
provider = module.params['provider'] or {}
|
||||
for key in dellos9_argument_spec:
|
||||
|
@ -106,6 +107,7 @@ def run_commands(module, commands, check_rc=True):
|
|||
responses.append(out)
|
||||
return responses
|
||||
|
||||
|
||||
def load_config(module, commands):
|
||||
rc, out, err = exec_command(module, 'configure terminal')
|
||||
if rc != 0:
|
||||
|
@ -121,6 +123,7 @@ def load_config(module, commands):
|
|||
|
||||
exec_command(module, 'end')
|
||||
|
||||
|
||||
def get_sublevel_config(running_config, module):
|
||||
contents = list()
|
||||
current_config_contents = list()
|
||||
|
@ -140,4 +143,3 @@ def get_sublevel_config(running_config, module):
|
|||
sublevel_config = '\n'.join(current_config_contents)
|
||||
|
||||
return sublevel_config
|
||||
|
||||
|
|
|
@ -97,8 +97,6 @@ lib/ansible/module_utils/bigswitch_utils.py
|
|||
lib/ansible/module_utils/cloudengine.py
|
||||
lib/ansible/module_utils/connection.py
|
||||
lib/ansible/module_utils/database.py
|
||||
lib/ansible/module_utils/dellos10.py
|
||||
lib/ansible/module_utils/dellos9.py
|
||||
lib/ansible/module_utils/docker_common.py
|
||||
lib/ansible/module_utils/ec2.py
|
||||
lib/ansible/module_utils/eos.py
|
||||
|
|
Loading…
Reference in a new issue