From b34cf390a6f8837bb4a6060a7a73a60795ea4d6d Mon Sep 17 00:00:00 2001 From: Charlie Le Date: Tue, 16 Jun 2026 14:13:59 -0700 Subject: [PATCH] Fix duplicate "(default: 3)" in --max-concurrent-downloads help text (#1725) 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 ec7b83b4..d26eddd7 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 } }