We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beab1dc commit 5929e48Copy full SHA for 5929e48
1 file changed
src/eligibility_signposting_api/audit/audit_context.py
@@ -192,7 +192,7 @@ def deduplicate_reasons(reasons: list[Reason]) -> list[Reason]:
192
for reason in reasons:
193
if reason.rule_name not in unique_rule_codes and reason.rule_description:
194
unique_rule_codes.add(reason.rule_name)
195
- deduplicated_reasons.append(
+ deduplicated_reasons.append( #TODO should we deduplicate by rule_type and priority ?
196
Reason(
197
reason.rule_type,
198
reason.rule_name,
0 commit comments