Move client variable out to prevent variable declaration errors (#48515)
This commit is contained in:
parent
365ecbd7ad
commit
946e093a14
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue