From 661ae0f43d54a7a101c4032c6ceebb8a2a6f5ed5 Mon Sep 17 00:00:00 2001 From: Rudi Date: Wed, 9 Mar 2022 10:48:15 -0500 Subject: [PATCH] Clean out unused imports --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.go b/main.go index acbcef4..f456275 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,6 @@ import ( tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" "github.com/mattn/go-isatty" - "github.com/muesli/reflow/indent" "samhofi.us/x/keybase/v2" "samhofi.us/x/keybase/v2/types/chat1" @@ -193,5 +192,5 @@ func (m model) View() string { s += "\n" } - return indent.String(s, 1) + return s }