about summary refs log tree commit diff stats
path: root/commands/compose/cc-bcc.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/cc-bcc.go')
-rw-r--r--commands/compose/cc-bcc.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/compose/cc-bcc.go b/commands/compose/cc-bcc.go
index db5f5b6..ce62242 100644
--- a/commands/compose/cc-bcc.go
+++ b/commands/compose/cc-bcc.go
@@ -12,15 +12,15 @@ func init() {
 	register(CC{})
 }
 
-func (_ CC) Aliases() []string {
+func (CC) Aliases() []string {
 	return []string{"cc", "bcc"}
 }
 
-func (_ CC) Complete(aerc *widgets.Aerc, args []string) []string {
+func (CC) Complete(aerc *widgets.Aerc, args []string) []string {
 	return nil
 }
 
-func (_ CC) Execute(aerc *widgets.Aerc, args []string) error {
+func (CC) Execute(aerc *widgets.Aerc, args []string) error {
 	var addrs string
 	if len(args) > 1 {
 		addrs = strings.Join(args[1:], " ")