From ac2ed21dff071bbe5659a042e47ff9d354d4fe6f Mon Sep 17 00:00:00 2001 From: Charlie Le Date: Sun, 14 Jun 2026 15:14:01 -0700 Subject: [PATCH] Fix duplicate "(default: 3)" in --max-concurrent-downloads help text Remove manually specified default value from help string since ArgumentParser already appends it automatically from the property's default value. Signed-off-by: Charlie Le --- Sources/Services/ContainerAPIService/Client/Flags.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Services/ContainerAPIService/Client/Flags.swift b/Sources/Services/ContainerAPIService/Client/Flags.swift index ec7b83b40..d26eddd75 100644 --- a/Sources/Services/ContainerAPIService/Client/Flags.swift +++ b/Sources/Services/ContainerAPIService/Client/Flags.swift @@ -389,7 +389,7 @@ public struct Flags { self.maxConcurrentDownloads = maxConcurrentDownloads } - @Option(name: .long, help: "Maximum number of concurrent downloads (default: 3)") + @Option(name: .long, help: "Maximum number of concurrent downloads") public var maxConcurrentDownloads: Int = 3 } }