From 99c4d84ddcc5a8f308a19b14a4298f7a56fa9eb8 Mon Sep 17 00:00:00 2001 From: Noemi Frisina Date: Fri, 6 Mar 2026 16:13:39 +0000 Subject: [PATCH] Fix the flag --- src/nexgen/command_line/parse_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nexgen/command_line/parse_utils.py b/src/nexgen/command_line/parse_utils.py index 63acbd84..87905862 100644 --- a/src/nexgen/command_line/parse_utils.py +++ b/src/nexgen/command_line/parse_utils.py @@ -67,5 +67,5 @@ def __call__(self, parser, namespace, values, option_string=None): "--vds-offset", type=int, default=0, help="Start image for the vds." ) vds_parser.add_argument( - "--no-vds", action="store_false", help="Do not write a vds file." + "--no-vds", action="store_true", help="Do not write a vds file." )