From 35e1de6f975088ade5dbf0af533fe6fdac8fcc94 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 2 Nov 2025 23:42:15 +0200 Subject: some linter fixes --- internal/hexaiaction/cmdentry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/hexaiaction/cmdentry.go') diff --git a/internal/hexaiaction/cmdentry.go b/internal/hexaiaction/cmdentry.go index ca33443..7d91ab2 100644 --- a/internal/hexaiaction/cmdentry.go +++ b/internal/hexaiaction/cmdentry.go @@ -160,8 +160,8 @@ func catFileTo(w io.Writer, path string) error { // echoThrough no longer used in tmux-only flow, but kept for potential reuse. func echoThrough(infile, outfile string, stdin io.Reader, stdout io.Writer) error { - var in io.Reader = stdin - var out io.Writer = stdout + in := stdin + out := stdout if infile != "" { f, err := os.Open(infile) if err != nil { -- cgit v1.2.3