Enable gofumpt linter; format code gofumpt -w . (#1576)

This commit is contained in:
Oleksandr Redko
2023-06-13 16:18:59 +03:00
committed by GitHub
parent b79233fac2
commit ffdf59d04c
20 changed files with 35 additions and 49 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ func ParseUfloat(buf []byte) (float64, error) {
}
b := buf
var v uint64
var offset = 1.0
offset := 1.0
var pointFound bool
for i, c := range b {
if c < '0' || c > '9' {