From 910640e3691e7250a9716d4d8e1bce658573d6e2 Mon Sep 17 00:00:00 2001 From: avallete Date: Thu, 12 Sep 2024 12:28:26 +0200 Subject: [PATCH] chore: fix lint --- internal/utils/credentials/store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/utils/credentials/store.go b/internal/utils/credentials/store.go index f9986ae52..46eb0c81d 100644 --- a/internal/utils/credentials/store.go +++ b/internal/utils/credentials/store.go @@ -26,8 +26,8 @@ type KeyringStore struct{} var storeProvider Store = &KeyringStore{} // Get retrieves the password for a project from the keyring. -func (provider *KeyringStore) Get(project string) (string, error) { - if err := provider.assertKeyringSupported(); err != nil { +func (ks *KeyringStore) Get(project string) (string, error) { + if err := ks.assertKeyringSupported(); err != nil { return "", err } val, err := keyring.Get(namespace, project)