Skip to content

Commit

Permalink
chore(lint): fix format redundancy (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiodangelis authored Dec 27, 2024
1 parent 98a3c59 commit d14719d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func Wizard(app application.App) error {
return err
}
if fileinfo.Mode().IsDir() {
return fmt.Errorf(fmt.Sprintf("%s is a directory", input))
return fmt.Errorf("%s is a directory", input)
}
return nil
}
Expand Down

0 comments on commit d14719d

Please sign in to comment.