Codebase list golang-github-vbauerster-mpb / 0373e21
minor: denote unused param by _ Vladimir Bauer 2 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
8181 zDur time.Duration
8282 }
8383
84 func (d *movingAverageSpeed) Decor(s Statistics) (string, int) {
84 func (d *movingAverageSpeed) Decor(_ Statistics) (string, int) {
8585 var str string
8686 // ewma implementation may return 0 before accumulating certain number of samples
8787 if v := d.average.Value(); v != 0 {