Skip to content

Commit 30bc2ed

Browse files
committed
type ignore
1 parent d275f97 commit 30bc2ed

File tree

1 file changed

+1
-1
lines changed
  • aws_sra_examples/solutions/ec2/ec2_default_ebs_encryption/lambda/src

1 file changed

+1
-1
lines changed

aws_sra_examples/solutions/ec2/ec2_default_ebs_encryption/lambda/src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def process_accounts(event: Union[CloudFormationCustomResourceEvent, dict], para
307307
if is_account_with_exclude_tags(account, params):
308308
continue
309309

310-
if event.get("local_testing") == "true" or event.get("ResourceProperties", {}).get("local_testing") == "true": # type: ignore
310+
if event.get("local_testing") == "true" or event.get("ResourceProperties", {}).get("local_testing") == "true":
311311
local_testing(account, params)
312312
else:
313313
sns_message = {"Action": params["action"], "AccountId": account["Id"]}

0 commit comments

Comments
 (0)