X Tutup
Skip to content

Commit 5b13dec

Browse files
committed
linter complains again
1 parent 8d82534 commit 5b13dec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/config/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func listRun(opts *ListOptions) error {
6363
if err != nil {
6464
return err
6565
}
66-
fmt.Fprint(opts.IO.Out, fmt.Sprintf("%s=%s\n", key.Key, val))
66+
fmt.Fprintf(opts.IO.Out, "%s=%s\n", key.Key, val)
6767
}
6868

6969
return nil

0 commit comments

Comments
 (0)
X Tutup