Cleanup lint

Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
Jakub Sztandera 2020-06-27 13:38:11 +02:00
parent 4f60c1afe7
commit b8ab549bcb
No known key found for this signature in database
GPG Key ID: 9A9AF56F8B3879BA

View File

@ -226,7 +226,7 @@ func compStats(vals []float64) (float64, float64) {
varsum += delta * delta
}
return av, float64(math.Sqrt(float64(varsum / float64(len(vals)))))
return av, math.Sqrt(varsum / float64(len(vals)))
}
type stats struct {