From 6838c23478944a9b45df1fa9a0f432ec77423987 Mon Sep 17 00:00:00 2001 From: Wagner Riffel Date: Tue, 3 Sep 2019 16:34:03 -0300 Subject: all: purge redundant underscores Signed-off-by: Wagner Riffel --- commands/account/compose.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/account/compose.go') diff --git a/commands/account/compose.go b/commands/account/compose.go index a4836b79..e61b593d 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -15,15 +15,15 @@ func init() { register(Compose{}) } -func (_ Compose) Aliases() []string { +func (Compose) Aliases() []string { return []string{"compose"} } -func (_ Compose) Complete(aerc *widgets.Aerc, args []string) []string { +func (Compose) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ Compose) Execute(aerc *widgets.Aerc, args []string) error { +func (Compose) Execute(aerc *widgets.Aerc, args []string) error { body, err := buildBody(args) if err != nil { return err -- cgit