Skip to content

Commit 441e3d6

Browse files
committed
Update hello_autoscaling.py
1 parent 98f2df5 commit 441e3d6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

python/example_code/auto-scaling/hello/hello_autoscaling.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ def hello_autoscaling(autoscaling_client):
1515
:param autoscaling_client: A Boto3 Amazon EC2 Auto Scaling client object.
1616
"""
1717
print(
18-
"Hello, Amazon EC2 Auto Scaling! Let's list up to ten of you Auto Scaling groups:"
18+
"Hello, Amazon EC2 Auto Scaling! Let's list up to ten of you Auto Scaling groups: 🚀"
1919
)
2020
response = autoscaling_client.describe_auto_scaling_groups()
2121
groups = response.get("AutoScalingGroups", [])
2222
if groups:
2323
for group in groups:
24-
print(f"\t{group['AutoScalingGroupName']}: {group['AvailabilityZones']}")
24+
print(f"\t{group['AutoScalingGroupName']}: {group['AvailabilityZones']}")
2525
else:
26-
print("There are no Auto Scaling groups in your account.")
26+
print("There are no Auto Scaling groups in your account.")
2727

2828

2929
if __name__ == "__main__":

0 commit comments

Comments
 (0)