Codebase list golang-github-vbauerster-mpb / e5b75a2
Revert "default speed unit: cast to int64" This reverts commit 016f13abda311b8a11b443c9d38f589ffecea10b. Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
169169 }
170170 default:
171171 return func(speed float64) string {
172 return fmt.Sprintf(format, int64(math.Round(speed)))
172 return fmt.Sprintf(format, speed)
173173 }
174174 }
175175 }