Skip to content

Commit aff6cd9

Browse files
author
ievgeniia ieromenko
committed
flake8 fixes
1 parent 26f2346 commit aff6cd9

File tree

1 file changed

+2
-2
lines changed
  • aws_sra_examples/solutions/macie/macie_org/lambda/src

1 file changed

+2
-2
lines changed

aws_sra_examples/solutions/macie/macie_org/lambda/src/macie.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def enable_macie(
180180
LOGGER.info(f"Macie already enabled in {region}.")
181181

182182

183-
def create_macie_job(configuration_role_name: str, admin_account_id: str, regions: list, job_name: str, tag_key: str) -> None: # noqa: ECE001
183+
def create_macie_job(configuration_role_name: str, admin_account_id: str, regions: list, job_name: str, tag_key: str) -> None:
184184
"""Create Macie job.
185185
186186
Args:
@@ -190,7 +190,7 @@ def create_macie_job(configuration_role_name: str, admin_account_id: str, region
190190
job_name: Macie job name
191191
tag_key: Macie job tag key for bucket criteria
192192
"""
193-
kwargs: CreateClassificationJobRequestRequestTypeDef = { # type: ignore[typeddict-item]
193+
kwargs: CreateClassificationJobRequestRequestTypeDef = { # type: ignore[typeddict-item] # noqa: ECE001
194194
"description": "SRA Macie job (Daily)",
195195
"jobType": "SCHEDULED",
196196
"initialRun": True,

0 commit comments

Comments
 (0)