mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
E501 fixes (#22879)
This commit is contained in:
parent
4fdeade389
commit
3164e8b561
215 changed files with 1328 additions and 761 deletions
|
@ -144,7 +144,9 @@ def main():
|
|||
# Sort the subnet groups before we compare them
|
||||
matching_groups[0].subnet_ids.sort()
|
||||
group_subnets.sort()
|
||||
if ( (matching_groups[0].name != group_name) or (matching_groups[0].description != group_description) or (matching_groups[0].subnet_ids != group_subnets) ):
|
||||
if (matching_groups[0].name != group_name or
|
||||
matching_groups[0].description != group_description or
|
||||
matching_groups[0].subnet_ids != group_subnets):
|
||||
changed_group = conn.modify_db_subnet_group(group_name, description=group_description, subnet_ids=group_subnets)
|
||||
changed = True
|
||||
except BotoServerError as e:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue