Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <[email protected]>
  • Loading branch information
odubajDT committed Jan 16, 2025
1 parent d4d8d11 commit 81aa995
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func quantileToStringSuffix(q float64) string {
str := strconv.FormatFloat(q, 'f', -1, 64)
result := strings.TrimPrefix(str, "0.")
if len(result) < 2 && result != "0" && result != "1" {
result = result + "0"
result += "0"
}
return result
}

0 comments on commit 81aa995

Please sign in to comment.