From c213d9cdeb496564ace4d0163fe714a3885d2834 Mon Sep 17 00:00:00 2001 From: Tommi Hovi Date: Tue, 19 Dec 2023 17:31:04 +0200 Subject: [PATCH] Fix: Remove extra line ending --- client/rules.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rules.go b/client/rules.go index db49700..0abebdc 100644 --- a/client/rules.go +++ b/client/rules.go @@ -58,7 +58,7 @@ func (oi *OIClient) PrintGroupRules(searchGroup string) error { } groupRulesString := filterRulesToFormatted(searchGroup, rules) - fmt.Println(groupRulesString) + fmt.Print(groupRulesString) return nil }