From a75285cb3a8c45e612ba411e2966284db8e2f645 Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Thu, 19 Dec 2024 09:42:04 -0600 Subject: [PATCH] Fix indentions --- dojo/tools/hcl_asoc_sast/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dojo/tools/hcl_asoc_sast/parser.py b/dojo/tools/hcl_asoc_sast/parser.py index bca8c2c6e4..72b8e23229 100644 --- a/dojo/tools/hcl_asoc_sast/parser.py +++ b/dojo/tools/hcl_asoc_sast/parser.py @@ -112,11 +112,11 @@ def get_findings(self, file, test): description = description + "***Cause:" + "\n" for causeitem in aitem: if causeitem.attrib["type"] == "string" and causeitem.text is not None: - description = description + causeitem.text + "\n" + description = description + causeitem.text + "\n" if aitem.tag == "recommendations": for recitem in aitem: if recitem.attrib["type"] == "string" and recitem.text is not None: - recommendations = recommendations + recitem.text + "\n" + recommendations = recommendations + recitem.text + "\n" elif recitem.attrib["type"] == "object": codeblock = recitem.iter() for codeitem in codeblock: