Skip to content

Commit

Permalink
style(flags): remove unneeded explicit "" values
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Sep 24, 2024
1 parent a16d5dd commit f80fb01
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions store/precomputed_key/s3/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ func CLIFlags(envPrefix, category string) []cli.Flag {
&cli.StringFlag{
Name: EndpointFlagName,
Usage: "endpoint for S3 storage",
Value: "",
EnvVars: withEnvPrefix(envPrefix, "S3_ENDPOINT"),
},
&cli.StringFlag{
Expand All @@ -44,13 +43,11 @@ func CLIFlags(envPrefix, category string) []cli.Flag {
&cli.StringFlag{
Name: AccessKeyIDFlagName,
Usage: "access key id for S3 storage",
Value: "",
EnvVars: withEnvPrefix(envPrefix, "ACCESS_KEY_ID"),
},
&cli.StringFlag{
Name: AccessKeySecretFlagName,
Usage: "access key secret for S3 storage",
Value: "",
EnvVars: withEnvPrefix(envPrefix, "ACCESS_KEY_SECRET"),
},
&cli.StringFlag{
Expand Down

0 comments on commit f80fb01

Please sign in to comment.