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/cf.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/account/cf.go') diff --git a/commands/account/cf.go b/commands/account/cf.go index f318374..cbef308 100644 --- a/commands/account/cf.go +++ b/commands/account/cf.go @@ -19,15 +19,15 @@ func init() { register(ChangeFolder{}) } -func (_ ChangeFolder) Aliases() []string { +func (ChangeFolder) Aliases() []string { return []string{"cf"} } -func (_ ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string { +func (ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string { return commands.GetFolders(aerc, args) } -func (_ ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error { +func (ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error { if len(args) < 2 { return errors.New("Usage: cf ") } -- cgit v1.2.3