Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CDimonaco committed Oct 14, 2024
1 parent d144356 commit fa41f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var rootCmd = &cobra.Command{

func Execute() {
executeCmd.Flags().StringVarP(&arguments, "arguments", "a", "", "arguments as json object (required)")
executeCmd.MarkFlagRequired("arguments")
_ = executeCmd.MarkFlagRequired("arguments")

rootCmd.AddCommand(executeCmd)
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose output")
Expand Down

0 comments on commit fa41f06

Please sign in to comment.