Skip to content

Commit 6db01c6

Browse files
committed
fix(server): make linter happy
1 parent c744d08 commit 6db01c6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

internal/cmd/server/service-account/attach/attach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ type inputModel struct {
3636

3737
func NewCmd(params *types.CmdParams) *cobra.Command {
3838
cmd := &cobra.Command{
39-
Use: fmt.Sprintf("attach"),
39+
Use: "attach",
4040
Short: "Attach a service account to a server",
4141
Long: "Attach a service account to a server",
4242
Args: args.SingleOptionalArg(serviceAccMailArg, nil), // Deprecated: positional argument is not used anymore, use the flag instead, will be removed 2026-12-03

internal/cmd/server/service-account/detach/detach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ type inputModel struct {
3636

3737
func NewCmd(params *types.CmdParams) *cobra.Command {
3838
cmd := &cobra.Command{
39-
Use: fmt.Sprintf("detach"),
39+
Use: "detach",
4040
Short: "Detach a service account from a server",
4141
Long: "Detach a service account from a server",
4242
Args: args.SingleOptionalArg(serviceAccMailArg, nil), // Deprecated: positional argument is not used anymore, use the flag instead, will be removed 2026-12-03

0 commit comments

Comments
 (0)