Skip to content

Commit

Permalink
Fix bug for duplicate printing
Browse files Browse the repository at this point in the history
  • Loading branch information
uzaxirr committed May 9, 2024
1 parent 302ba9f commit dc1a7ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utility/output_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ func (ow *OutputWriter) StartLine() {
func (ow *OutputWriter) finishExistingLine() {
if len(ow.TempValues) > 0 {
ow.Values = append(ow.Values, ow.TempValues)
ow.TempValues = nil
}
}

Expand Down

0 comments on commit dc1a7ed

Please sign in to comment.