Skip to content

Commit

Permalink
Remove extra whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Jan 26, 2021
1 parent 43eea56 commit 9456935
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions internal/cli/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,11 @@ func deleteRulesCmd(cli *cli) *cobra.Command {
Long: `Delete a rule:
auth0 rules delete --id "12345" --force`,
PreRunE: func(cmd *cobra.Command, args []string) error {
if flags.id != "" && flags.name != "" {
return fmt.Errorf("TMI! 🤯 use either --name or --id")
}
return nil
PreRunE: func(cmd *cobra.Command, args []string) error {
if flags.id != "" && flags.name != "" {
return fmt.Errorf("TMI! 🤯 use either --name or --id")
}
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
if !flags.force {
Expand Down

0 comments on commit 9456935

Please sign in to comment.