Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
tbruyelle committed May 30, 2024
1 parent d0af373 commit b9c5b1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/gov_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ func newCmdSubmitCancelUpgradeProposal() *cobra.Command {
cmd.Flags().String(cli.FlagTitle, "", "title of proposal")
cmd.Flags().String(cli.FlagDescription, "", "description of proposal")
cmd.Flags().String(cli.FlagDeposit, "", "deposit of proposal")
cmd.MarkFlagRequired(cli.FlagTitle)
cmd.MarkFlagRequired(cli.FlagDescription)
cmd.MarkFlagRequired(cli.FlagTitle) //nolint:errcheck
cmd.MarkFlagRequired(cli.FlagDescription) //nolint:errcheck

return cmd
}
Expand Down

0 comments on commit b9c5b1f

Please sign in to comment.