autofix: fix unused method receiver (#6808)

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
This commit is contained in:
deepsource-autofix[bot]
2022-03-06 16:37:41 +08:00
committed by GitHub
parent b7372b1f32
commit 09dbbf9a69
11 changed files with 23 additions and 23 deletions

View File

@@ -11,6 +11,6 @@ import (
"github.com/pkg/errors"
)
func (c *Config) doAuth(_, _ string) error {
func (*Config) doAuth(_, _ string) error {
return errors.New("PAM not supported")
}