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>
pull/65903/head
Paul Belanger 5 years ago committed by GitHub
parent 95d35a3b95
commit 83ad1231b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save