Skip to content

Commit 6c9d99d

Browse files
committed
lint
1 parent c692c0b commit 6c9d99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/v2/autocli/flag/enum.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (e *enumValue) Set(s string) error {
6363
validValues = append(validValues, k)
6464
}
6565

66-
return fmt.Errorf("%s is not a valid value for enum %s. Valid values are: %s.", s, e.enum.FullName(), strings.Join(validValues, ", "))
66+
return fmt.Errorf("%s is not a valid value for enum %s. Valid values are: %s", s, e.enum.FullName(), strings.Join(validValues, ", "))
6767
}
6868
e.value = valDesc.Number()
6969
return nil

0 commit comments

Comments
 (0)