From dfeefbb283ae752ffe49e32e384dc20c160c4bc8 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Fri, 15 Jan 2021 09:47:25 +0100 Subject: [PATCH] Remove import name that is the same as the import Simplify the import by using the default import name. --- pkg/dyff/colors.go | 2 +- pkg/dyff/output.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/dyff/colors.go b/pkg/dyff/colors.go index 8176a4a..bdbd311 100644 --- a/pkg/dyff/colors.go +++ b/pkg/dyff/colors.go @@ -24,7 +24,7 @@ import ( "fmt" "github.com/gonvenience/bunt" - colorful "github.com/lucasb-eyer/go-colorful" + "github.com/lucasb-eyer/go-colorful" ) var ( diff --git a/pkg/dyff/output.go b/pkg/dyff/output.go index a5a7a93..a75eb1b 100644 --- a/pkg/dyff/output.go +++ b/pkg/dyff/output.go @@ -23,7 +23,7 @@ package dyff import ( "github.com/gonvenience/bunt" "github.com/gonvenience/neat" - colorful "github.com/lucasb-eyer/go-colorful" + "github.com/lucasb-eyer/go-colorful" ) func yamlStringInRedishColors(input interface{}) (string, error) {