From 0acd9eeaefabae82f50b3c577c5ac5114b081b71 Mon Sep 17 00:00:00 2001 From: testaccount90009 <122134756+testaccount90009@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:31:56 -0800 Subject: [PATCH] Update parser.py --- dojo/tools/mend/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dojo/tools/mend/parser.py b/dojo/tools/mend/parser.py index 73bab079f5a..8ef0a30892b 100644 --- a/dojo/tools/mend/parser.py +++ b/dojo/tools/mend/parser.py @@ -205,7 +205,7 @@ def _build_common_output(node, lib_name=None): findings.append(_build_common_output(node)) def create_finding_key(f: Finding) -> str: - """Hashes the finding's description and title to retrieve a key for deduplication.""" + # """Hashes the finding's description and title to retrieve a key for deduplication.""" return hashlib.md5( f.description.encode("utf-8") + f.title.encode("utf-8"),