From 919fec58c59ebc6e5c089fdd62c2c9150442deed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9a=20Grondier?= Date: Mon, 2 Dec 2024 10:56:13 +0100 Subject: [PATCH] lint --- cmd/dbaas_user_list.go | 2 +- cmd/dbaas_user_show.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/dbaas_user_list.go b/cmd/dbaas_user_list.go index 499630aa..3cc72538 100644 --- a/cmd/dbaas_user_list.go +++ b/cmd/dbaas_user_list.go @@ -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) } diff --git a/cmd/dbaas_user_show.go b/cmd/dbaas_user_show.go index cabf6f3e..4f2c8bdb 100644 --- a/cmd/dbaas_user_show.go +++ b/cmd/dbaas_user_show.go @@ -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) }