Skip to content

Commit

Permalink
Use color by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvio Böhler committed Sep 10, 2022
1 parent 341a81a commit d88808d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/balance/balance.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (r *runner) setupFlags(c *cobra.Command) {
c.Flags().Var(&r.commodities, "commodity", "filter commodities with a regex")
c.Flags().Int32Var(&r.digits, "digits", 0, "round to number of digits")
c.Flags().BoolVarP(&r.thousands, "thousands", "k", false, "show numbers in units of 1000")
c.Flags().BoolVar(&r.color, "color", false, "print output in color")
c.Flags().BoolVar(&r.color, "color", true, "print output in color")
}

func (r runner) execute(cmd *cobra.Command, args []string) error {
Expand Down

0 comments on commit d88808d

Please sign in to comment.