Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit 3bc0611

Browse files
committed
lint: make linter happy
1 parent a0a0ec2 commit 3bc0611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cboard/tools.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func (c *toolsClipboardManager) Write(data []byte) error {
5454
if _, err := io.Copy(stdin, bytes.NewBuffer(data)); err != nil {
5555
return fmt.Errorf("unable to retrieve data from stdin pipe: %w", err)
5656
}
57-
stdin.Close()
57+
stdin.Close() //nolint
5858

5959
if err := cmd.Run(); err != nil {
6060
return fmt.Errorf("unable to wait command: %w", err)

0 commit comments

Comments
 (0)