Skip to content

Commit

Permalink
Fix Pylint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sshnaidm committed Sep 1, 2024
1 parent 7c50ed0 commit ba42a8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion transible/plugins/aws_ansible/amazon_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ def create_vpcs(self, force_optimize=conf.VARS_OPT_NETWORKS,
},
'register': vpc_register_name
})
self.data['vpc_ids'][vpc_net_id] = "{{ %s.vpcs.0.id | default('%s') }}" % (vpc_register_name, vpc_net_id)
self.data['vpc_ids'][vpc_net_id] = "{{ %s.vpcs.0.id | default('%s') }}" % (
vpc_register_name, vpc_net_id)
continue
n = {'state': '{{ state }}'}
n['cidr_block'] = vpc['CidrBlock']
Expand Down

0 comments on commit ba42a8b

Please sign in to comment.