From f7bfab065d4ef5b98f281e6aedc5e7fdd54386d5 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Sat, 4 Mar 2023 13:11:38 -0600 Subject: [PATCH] fix: Show default value in `config list` help --- src/Recyclarr.Cli/Console/Commands/ConfigListCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Recyclarr.Cli/Console/Commands/ConfigListCommand.cs b/src/Recyclarr.Cli/Console/Commands/ConfigListCommand.cs index 9404d4be..ec0feea7 100644 --- a/src/Recyclarr.Cli/Console/Commands/ConfigListCommand.cs +++ b/src/Recyclarr.Cli/Console/Commands/ConfigListCommand.cs @@ -20,7 +20,8 @@ public class ConfigListCommand : AsyncCommand public class CliSettings : BaseCommandSettings { [CommandArgument(0, "[ListCategory]")] - [EnumDescription("The type of configuration information to list.")] + [EnumDescription( + "The type of configuration information to list. If not specified, defaults to 'local'.")] public ConfigListCategory ListCategory { get; [UsedImplicitly] init; } = ConfigListCategory.Local; }