Skip to content

Commit

Permalink
types: appease linter by running gofmt
Browse files Browse the repository at this point in the history
Addresses IDX-416

Signed-off-by: philhassey <phil@strongdm.com>
  • Loading branch information
philhassey committed Dec 5, 2024
1 parent e2bd7d5 commit fb0f992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/decimal.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (d Decimal) MarshalJSON() ([]byte, error) {
// Float returns a float64 representation of a Decimal. Warning: some precision
// may be lost during this conversion.
func (d Decimal) Float() float64 {
return float64(d.value)/decimalPrecision
return float64(d.value) / decimalPrecision
}

func (d Decimal) hash() uint64 {
Expand Down

0 comments on commit fb0f992

Please sign in to comment.