From 173b2cd89941ef978b9e865e87a392804da49653 Mon Sep 17 00:00:00 2001 From: stana-ethernal Date: Mon, 23 Oct 2023 08:42:38 +0200 Subject: [PATCH] lint fix --- command/secrets/output/secrets_output.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/command/secrets/output/secrets_output.go b/command/secrets/output/secrets_output.go index a6888c6fa8..f223b876b4 100644 --- a/command/secrets/output/secrets_output.go +++ b/command/secrets/output/secrets_output.go @@ -38,24 +38,21 @@ func setFlags(cmd *cobra.Command) { ¶ms.outputBLS, blsFlag, false, - "output only the BLS public key "+ - "from the provided secrets manager", + "output only the BLS public key from the provided secrets manager", ) cmd.Flags().BoolVar( ¶ms.outputNodeID, nodeIDFlag, false, - "output only the node id "+ - "from the provided secrets manager", + "output only the node id from the provided secrets manager", ) cmd.Flags().BoolVar( ¶ms.outputValidator, validatorFlag, false, - "output only the validator key address "+ - "from the provided secrets manager", + "output only the validator key address from the provided secrets manager", ) cmd.MarkFlagsMutuallyExclusive(dataDirFlag, configFlag)