From d5de92a1f544479b89f057372f1c4e2bfec5da9a Mon Sep 17 00:00:00 2001 From: Ahmad Anvari Date: Tue, 10 Sep 2024 19:22:15 +0330 Subject: [PATCH] fix gofumpt --- internal/authenticator/builder.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/authenticator/builder.go b/internal/authenticator/builder.go index 0ea7c9f..dc1c2f8 100644 --- a/internal/authenticator/builder.go +++ b/internal/authenticator/builder.go @@ -124,7 +124,8 @@ func (b Builder) manualAuthenticator(vendor config.Vendor) (*ManualAuthenticator } func (b Builder) autoAuthenticator(vendorCfg config.Vendor, blackListUserLoggingCfg config.BlackListUserLogging) ( - *AutoAuthenticator, error) { + *AutoAuthenticator, error, +) { allowedAccessTypes, err := b.GetAllowedAccessTypes(vendorCfg.AllowedAccessTypes) if err != nil { return nil, fmt.Errorf("cannot parse allowed access types %w", err)