From 22f1b71be0b367d3f7324130a28437c13ee9db5d Mon Sep 17 00:00:00 2001 From: Ryan Brown Date: Tue, 19 Jun 2018 16:23:41 -0400 Subject: [PATCH] [aws] Remove unused variable in ec2_asg module (#41706) --- lib/ansible/modules/cloud/amazon/ec2_asg.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2_asg.py b/lib/ansible/modules/cloud/amazon/ec2_asg.py index 6622538d289..df854ec15b0 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_asg.py +++ b/lib/ansible/modules/cloud/amazon/ec2_asg.py @@ -1355,7 +1355,6 @@ def wait_for_term_inst(connection, term_instances): wait_timeout = module.params.get('wait_timeout') group_name = module.params.get('name') as_group = describe_autoscaling_groups(connection, group_name)[0] - props = get_properties(as_group) count = 1 wait_timeout = time.time() + wait_timeout while wait_timeout > time.time() and count > 0: