From 363b9081695f15ea6149624fa33c87dac6d1a702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Z=C3=A1rate?= Date: Tue, 1 Oct 2024 22:18:52 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20and=20reword=20comment=20in=20?= =?UTF-8?q?=E2=80=98find=5Fviolation=E2=80=99=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/ec2_require_tags_with_valid_values.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ec2_require_tags_with_valid_values.py b/python/ec2_require_tags_with_valid_values.py index 0aebe6af4..3f10d6b5e 100644 --- a/python/ec2_require_tags_with_valid_values.py +++ b/python/ec2_require_tags_with_valid_values.py @@ -18,8 +18,8 @@ APPLICABLE_RESOURCES = ["AWS::EC2::Instance"] -# Iterate through required tags ensureing each required tag is present, -# and value is one of the given valid values +# Iterate through the required tags, ensuring each required tag is present +# and that the value is one of the given valid values def find_violation(current_tags, required_tags): violation = "" for rtag,rvalues in required_tags.iteritems():