Skip to content

Commit

Permalink
Fix linter issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdappollonio committed Sep 19, 2024
1 parent f80b57d commit 86ab198
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var infoCmd = &cobra.Command{
RunE: func(_ *cobra.Command, _ []string) error {
config, err := configs.ReadConfig()
if err != nil {
return err
return fmt.Errorf("failed to read config: %w", err)
}

var buf bytes.Buffer
Expand Down
2 changes: 1 addition & 1 deletion cmd/reset.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var resetCmd = &cobra.Command{
switch v := checksMap.(type) {
case nil:
// Handle the nil case explicitly
message := `# Succesfully reset`
message := `# Successfully reset`
progress.Success(message)
return nil
case string:
Expand Down

0 comments on commit 86ab198

Please sign in to comment.