mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Don't hardcode list of delete functions to loop through
This commit is contained in:
parent
9485d82eca
commit
952aa0c2d8
1 changed files with 2 additions and 2 deletions
|
@ -145,8 +145,8 @@ def main():
|
|||
args = parse_args()
|
||||
authenticate()
|
||||
|
||||
for func in [delete_rax, delete_rax_clb, delete_rax_keypair,
|
||||
delete_rax_network, delete_rax_cbs, delete_rax_cdb]:
|
||||
funcs = [f for n, f in globals().items() if n.startswith('delete_rax')]
|
||||
for func in sorted(funcs, key=lambda f: f.__name__):
|
||||
try:
|
||||
func(args)
|
||||
except Exception as e:
|
||||
|
|
Loading…
Reference in a new issue