From 58aeb4705e1356a4cee89597412bec7794ae56e3 Mon Sep 17 00:00:00 2001 From: Gopinath Langote Date: Tue, 22 Oct 2019 14:52:23 +0200 Subject: [PATCH] Formatting fix --- cmd/utils/printer.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/utils/printer.go b/cmd/utils/printer.go index 6b8a9b7f..7aea04b5 100644 --- a/cmd/utils/printer.go +++ b/cmd/utils/printer.go @@ -2,8 +2,9 @@ package utils import ( "fmt" - "github.com/logrusorgru/aurora" "strings" + + "github.com/logrusorgru/aurora" ) // Dash return dashes with fixed length - 72 @@ -34,7 +35,7 @@ func CPrintln(text string, style Style) { fmt.Println() } -// CPrintln prints the text with given formatting style +// CPrint prints the text with given formatting style func CPrint(text string, style Style) { formattedText := colorize(text, style) formattedText = bold(formattedText, style)