Skip to content

Commit

Permalink
fix: lint error (#236)
Browse files Browse the repository at this point in the history
Co-authored-by: Pablo RUTH <[email protected]>
  • Loading branch information
pablo-ruth and Pablo RUTH authored Sep 7, 2024
1 parent 4bb370e commit bcb1fe7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/files.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package client

import (
"errors"
"fmt"
"os"
"reflect"
Expand Down Expand Up @@ -151,7 +152,7 @@ Please generate at least one with command like this :
}
}

return nil, fmt.Errorf(errStr)
return nil, errors.New(errStr)
}
return found, nil
}
Expand Down

0 comments on commit bcb1fe7

Please sign in to comment.