From 74bb23b8b4eb6946e9780675d9cb1b4f7a2d39bb Mon Sep 17 00:00:00 2001 From: Marvin Wendt Date: Mon, 12 Aug 2024 10:35:40 +0200 Subject: [PATCH] chore: linting --- style.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/style.go b/style.go index 0826ad2..3c1b3c5 100644 --- a/style.go +++ b/style.go @@ -88,20 +88,20 @@ func (s Style) Fprintfln(w io.Writer, format string, a ...any) (n int, err error // Print formats using the default formats for its operands and writes to standard output. func (s Style) Print(a ...any) { - s.Fprint(Writer, a...) + _, _ = s.Fprint(Writer, a...) } // Printf formats according to a format specifier and writes to standard output. func (s Style) Printf(format string, a ...any) { - s.Fprintf(Writer, format, a...) + _, _ = s.Fprintf(Writer, format, a...) } // Println formats using the default formats for its operands and writes to standard output. func (s Style) Println(a ...any) { - s.Fprintln(Writer, a...) + _, _ = s.Fprintln(Writer, a...) } // Printfln formats according to a format specifier and writes to standard output. func (s Style) Printfln(format string, a ...any) { - s.Fprintfln(Writer, format, a...) + _, _ = s.Fprintfln(Writer, format, a...) }