Fix linter

This commit is contained in:
Miguel de la Cruz 2020-02-29 00:39:26 +01:00
parent 167dc7aae8
commit d7a4b25950
2 changed files with 6 additions and 6 deletions

View file

@ -10,8 +10,8 @@ func TokenSetJiraCmd() *cobra.Command {
return &cobra.Command{
Use: "jira",
Short: "Sets the value of the jira token",
Args: cobra.ExactArgs(1),
RunE: tokenSetJiraCmdF,
Args: cobra.ExactArgs(1),
RunE: tokenSetJiraCmdF,
}
}
@ -19,8 +19,8 @@ func TokenSetGithubCmd() *cobra.Command {
return &cobra.Command{
Use: "github",
Short: "Sets the value of the github token",
Args: cobra.ExactArgs(1),
RunE: tokenSetGithubCmdF,
Args: cobra.ExactArgs(1),
RunE: tokenSetGithubCmdF,
}
}