diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-20 20:49:47 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-20 20:49:47 -0400 |
| commit | 473bfaddb6acd44e208406a224d75b75fdf9ec97 (patch) | |
| tree | b968349bd1add33e3a60f46e6fbe7fe25c9e9c16 /cmd | |
| parent | 5b3f9269e7a4c709d5ced93c0f13492a3189c4f6 (diff) | |
| download | lulu-473bfaddb6acd44e208406a224d75b75fdf9ec97.zip | |
fix EmailAddress.String()
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/lulu/indent_tab_writer.go | 4 |
1 files changed, 1 insertions, 3 deletions
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 { |