Codebase list golang-github-vbauerster-mpb / a051cdc
refactoring: retrun initial filler on base == nil Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
9999 }
100100 fmt.Fprintf(w, " Taksk %02d: Done!\n", id)
101101 }
102 if id == 0 {
102 if base == nil {
103103 return mpb.BarFillerFunc(fn)
104104 }
105105 return mpb.BarFillerFunc(func(w io.Writer, reqWidth int, st decor.Statistics) {