From 621fd614ea3b44216bd6c7ba1cc388d9c2e915c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sat, 11 Jun 2022 21:06:08 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A9=F0=9F=91=8C=20make=20lint=20happy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/image_finder/keyword.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/image_finder/keyword.go b/plugin/image_finder/keyword.go index c3d35f3e..75e61d7d 100644 --- a/plugin/image_finder/keyword.go +++ b/plugin/image_finder/keyword.go @@ -130,7 +130,7 @@ func printtags(r reflect.Value) string { tags := r.Elem() s := binary.BytesToString(binary.NewWriterF(func(w *binary.Writer) { for i := 0; i < tags.Len(); i++ { - w.WriteByte('\n') + _ = w.WriteByte('\n') tag := tags.Index(i) _ = w.WriteByte('#') w.WriteString(tag.Field(0).String())