internal: fix lint (#22263)

This commit is contained in:
Simonyi Gergő
2026-05-12 13:06:44 +02:00
committed by GitHub
parent 2915c252ea
commit 19f42edd29
+1 -1
View File
@@ -130,7 +130,7 @@ func (c *Config) fromEnv() error {
func (c *Config) walkScheme(v interface{}) {
rv := reflect.ValueOf(v)
if rv.Kind() != reflect.Ptr || rv.IsNil() {
if rv.Kind() != reflect.Pointer || rv.IsNil() {
return
}