From 473bfaddb6acd44e208406a224d75b75fdf9ec97 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Wed, 20 May 2026 20:49:47 -0400 Subject: fix EmailAddress.String() --- cmd/lulu/indent_tab_writer.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'cmd') diff --git a/cmd/lulu/indent_tab_writer.go b/cmd/lulu/indent_tab_writer.go index 102cb33..b5cde97 100644 --- a/cmd/lulu/indent_tab_writer.go +++ b/cmd/lulu/indent_tab_writer.go @@ -26,9 +26,7 @@ func newIndentTabWriter(w io.Writer, tabwriterFlags uint) *indentTabWriter { func (w *indentTabWriter) Write(p []byte) (n int, err error) { return w.tabw.Write(p) } -func (w *indentTabWriter) Flush() error { - return w.tabw.Flush() -} +func (w *indentTabWriter) Flush() error { return w.tabw.Flush() } func (w *indentTabWriter) Indent() error { if err := w.tabw.Flush(); err != nil { -- cgit v1.2.3