Skip to content

Commit

Permalink
🚑 Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
wesen committed Feb 11, 2025
1 parent 73ea104 commit 2b2f77d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions cmd/go-go-mcp/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,12 @@ func initRootCmd() (*help.HelpSystem, error) {
helpSystem := help.NewHelpSystem()
helpSystem.SetupCobraRootCommand(rootCmd)

doc.AddDocToHelpSystem(helpSystem)
err := doc.AddDocToHelpSystem(helpSystem)
if err != nil {
return nil, err
}

err := clay.InitViper("mcp", rootCmd)
err = clay.InitViper("mcp", rootCmd)
if err != nil {
return nil, err
}
Expand Down
1 change: 0 additions & 1 deletion pkg/cmds/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,3 @@ func LoadShellCommand(path string) (*ShellCommand, error) {

return LoadShellCommandFromYAML(data)
}

0 comments on commit 2b2f77d

Please sign in to comment.