Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tgrondier committed Dec 2, 2024
1 parent e834d96 commit 919fec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/dbaas_user_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (c *dbaasUserListCmd) cmdRun(cmd *cobra.Command, args []string) error {
case "grafana":
return c.listGrafana(cmd, args)
default:
return fmt.Errorf("Listing users unsupported for service of type %q", db.Type)
return fmt.Errorf("listing users unsupported for service of type %q", db.Type)

}

Expand Down
2 changes: 1 addition & 1 deletion cmd/dbaas_user_show.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (c *dbaasUserShowCmd) cmdRun(cmd *cobra.Command, args []string) error {
case "grafana":
return c.outputFunc(c.showGrafana(ctx))
default:
return fmt.Errorf("Listing users unsupported for service of type %q", db.Type)
return fmt.Errorf("listing users unsupported for service of type %q", db.Type)

}

Expand Down

0 comments on commit 919fec5

Please sign in to comment.