chore: fix all linting (#24101)
This commit is contained in:
+1
-1
@@ -7,7 +7,7 @@ import (
|
||||
func CombineErrors(ret, also error, desc string) error {
|
||||
if also != nil {
|
||||
if ret != nil {
|
||||
ret = fmt.Errorf("%w; %v: %v", ret, desc, also)
|
||||
ret = fmt.Errorf("%w; %v: %w", ret, desc, also)
|
||||
} else {
|
||||
ret = also
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user