From 0a416d60f2c1da794f5fcbac4a018fd433a1baba Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Fri, 20 Aug 2021 11:57:23 +0200 Subject: [PATCH] format table --- cmd/cli/format/format.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/cli/format/format.go b/cmd/cli/format/format.go index 646586d..20c8d6a 100644 --- a/cmd/cli/format/format.go +++ b/cmd/cli/format/format.go @@ -3,7 +3,6 @@ package format import ( "fmt" "sort" - "strings" "git.ewintr.nl/gte/internal/task" ) @@ -21,7 +20,7 @@ func FormatTaskTable(tasks []*task.LocalTask) string { var output string for _, t := range tasks { - output += fmt.Sprintf("%d\t%s\t%s (%s, %s)\n", t.LocalId, t.Due.String(), t.Action, t.Project, strings.ToLower(t.Folder)) + output += fmt.Sprintf("%d\t%s\t%s (%s)\n", t.LocalId, t.Due.String(), t.Action, t.Project) } return output