fix: linting issues with pre-allocation for single provider

Signed-off-by: Jan Larwig <jan@larwig.com>
This commit is contained in:
Jan Larwig 2026-03-26 22:18:29 +01:00
parent da14399e03
commit d0dfb9bdbb
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ func legacyGoogleFlagSet() *pflag.FlagSet {
}
func (l *LegacyProvider) convert() (Providers, error) {
providers := Providers{}
providers := make(Providers, 0, 1)
provider := Provider{
ClientID: l.ClientID,