Remove unused variable in resetconf_config.py (#65892)
Our flake8 jobs for ansible.netcommon exposed this issue. Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
95d35a3b95
commit
83ad1231b8
1 changed files with 2 additions and 3 deletions
|
@ -148,7 +148,6 @@ def main():
|
|||
result = {'changed': False, 'warnings': warnings}
|
||||
|
||||
running = None
|
||||
response = None
|
||||
commit = not module.check_mode
|
||||
try:
|
||||
running = restconf.get(module, path, output=format)
|
||||
|
@ -162,7 +161,7 @@ def main():
|
|||
if method == 'delete':
|
||||
if running:
|
||||
if commit:
|
||||
response = restconf.edit_config(module, path=path, method='DELETE')
|
||||
restconf.edit_config(module, path=path, method='DELETE')
|
||||
result['changed'] = True
|
||||
else:
|
||||
warnings.append("delete not executed as resource '%s' does not exist" % path)
|
||||
|
@ -182,7 +181,7 @@ def main():
|
|||
result['diff'] = {'prepared': diff, 'before': candidate, 'after': running}
|
||||
|
||||
if commit:
|
||||
response = restconf.edit_config(module, path=path, content=diff, method=method.upper(), format=format)
|
||||
restconf.edit_config(module, path=path, content=diff, method=method.upper(), format=format)
|
||||
result['changed'] = True
|
||||
|
||||
except ConnectionError as exc:
|
||||
|
|
Loading…
Reference in a new issue