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; }