Move client variable out to prevent variable declaration errors (#48515)

pull/48519/head
Tim Rupp 6 years ago committed by GitHub
parent 365ecbd7ad
commit 946e093a14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -686,8 +686,9 @@ def main():
supports_check_mode=spec.supports_check_mode,
)
client = F5RestClient(**module.params)
try:
client = F5RestClient(**module.params)
mm = ModuleManager(module=module, client=client)
results = mm.exec_module()
cleanup_tokens(client)

Loading…
Cancel
Save