Codebase list golang-github-vbauerster-mpb / 6a161af
satisfy staticcheck Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
1818 )
1919
2020 // DoneError represents an error when `*mpb.Progress` is done but its functionality is requested.
21 var DoneError = fmt.Errorf("%T instance can't be reused after it's done!", (*Progress)(nil))
21 var DoneError = fmt.Errorf("%T instance can't be reused after it's done", (*Progress)(nil))
2222
2323 // Progress represents a container that renders one or more progress bars.
2424 type Progress struct {