mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Make compatible with python
Removed one line if else
This commit is contained in:
@@ -130,7 +130,10 @@ def main():
|
||||
details = r.text
|
||||
)
|
||||
|
||||
changeRequired = not exchangeExists if module.params['state']=='present' else exchangeExists
|
||||
if module.params['state']=='present':
|
||||
changeRequired = not exchangeExists
|
||||
else:
|
||||
changeRequired = exchangeExists
|
||||
|
||||
# Check if attributes change on existing exchange
|
||||
if not changeRequired and r.status_code==200 and module.params['state'] == 'present':
|
||||
|
||||
Reference in New Issue
Block a user