Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nikpivkin committed Mar 15, 2024
1 parent ba8406c commit 2797135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cloud/aws/scanner/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (m *progressTracker) StartService(name string) {
return
}

m.debugWriter.Write([]byte(fmt.Sprintf("[%d/%d] Scanning %s...\n", m.serviceCurrent+1, m.serviceTotal, name)))
fmt.Fprintf(m.debugWriter, "[%d/%d] Scanning %s...\n", m.serviceCurrent+1, m.serviceTotal, name)
m.serviceBar = bar.New(
bar.OptionHideOnFinish(true),
bar.OptionWithAutoComplete(false),
Expand Down

0 comments on commit 2797135

Please sign in to comment.