cli/config/credentials: fix "unused-receiver" linting

cli/config/credentials/file_store_test.go:29:7: unused-receiver: method receiver 'f' is not referenced in method's body, consider removing or renaming it as _ (revive)
    func (f *fakeStore) GetFilename() string {
          ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2025-02-17 13:27:32 +01:00
parent 88b2e78e02
commit fdc665820c
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C

View File

@ -26,7 +26,7 @@ func (f *fakeStore) GetAuthConfigs() map[string]types.AuthConfig {
return f.configs
}
func (f *fakeStore) GetFilename() string {
func (*fakeStore) GetFilename() string {
return "no-config.json"
}