From 99cee284b6b274a573ab3c85cfcd6c8cdb7a3a63 Mon Sep 17 00:00:00 2001 From: tduhamel42 Date: Sun, 2 Nov 2025 15:15:19 +0100 Subject: [PATCH] fix: Update reporter __init__.py to import from native_reporter Fixed broken import after renaming sarif_reporter.py to native_reporter.py --- backend/toolbox/modules/reporter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/toolbox/modules/reporter/__init__.py b/backend/toolbox/modules/reporter/__init__.py index 7812ff1..38f1725 100644 --- a/backend/toolbox/modules/reporter/__init__.py +++ b/backend/toolbox/modules/reporter/__init__.py @@ -9,6 +9,6 @@ # # Additional attribution and requirements are provided in the NOTICE file. -from .sarif_reporter import SARIFReporter +from .native_reporter import SARIFReporter __all__ = ["SARIFReporter"] \ No newline at end of file