From ba5cff2d9e3752338c8d75557687761bc2f5b5a6 Mon Sep 17 00:00:00 2001 From: tdruez Date: Fri, 5 Dec 2025 08:51:29 +0400 Subject: [PATCH] Add "ort-package-list" to the formats list in `run` command Signed-off-by: tdruez --- scanpipe/management/commands/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scanpipe/management/commands/run.py b/scanpipe/management/commands/run.py index 287902dd7c..3a3242e57c 100644 --- a/scanpipe/management/commands/run.py +++ b/scanpipe/management/commands/run.py @@ -59,7 +59,7 @@ def add_arguments(self, parser): parser.add_argument( "--format", default="json", - choices=["json", "spdx", "cyclonedx", "attribution"], + choices=["json", "spdx", "cyclonedx", "attribution", "ort-package-list"], help="Specifies the output serialization format for the results.", )