From b59042d9e9b61ed0bbad38103c78dd4fb03ede23 Mon Sep 17 00:00:00 2001 From: Pepe Fagoaga Date: Wed, 3 Aug 2022 16:38:53 +0200 Subject: [PATCH] fix(check_name): Remove check_name (#1307) --- lib/outputs/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/outputs/models.py b/lib/outputs/models.py index 6c2c183c..ae85fa0b 100644 --- a/lib/outputs/models.py +++ b/lib/outputs/models.py @@ -25,7 +25,7 @@ class Check_Output_JSON(BaseModel): OrganizationsInfo: Optional[AWS_Organizations_Info] Region: str = "" CheckID: str - CheckName: str + # CheckName: str CheckTitle: str CheckType: str ServiceName: str @@ -106,7 +106,7 @@ class Check_Output_CSV: account_tags: str region: str check_id: str - check_name: str + # check_name: str check_title: str check_type: str status: str @@ -160,7 +160,7 @@ class Check_Output_CSV: self.account_tags = organizations.account_details_tags self.region = report.region self.check_id = report.check_metadata.CheckID - self.check_name = report.check_metadata.CheckName + # self.check_name = report.check_metadata.CheckName self.check_title = report.check_metadata.CheckTitle self.check_type = report.check_metadata.CheckType self.status = report.status