Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
avallete committed Sep 12, 2024
1 parent bdc5479 commit 910640e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/utils/credentials/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 910640e

Please sign in to comment.