From cae1727bf5fa10a4cd54583e2d59e90326c70775 Mon Sep 17 00:00:00 2001 From: Ethan Holz Date: Tue, 11 Oct 2022 15:12:47 -0500 Subject: [PATCH] fix: Removed ineffectual assignment --- main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.go b/main.go index 311940f..f0280e3 100644 --- a/main.go +++ b/main.go @@ -4,13 +4,11 @@ import ( "fmt" "strings" - "github.com/taigrr/simplecolorpalettes/palettes/material" "github.com/taigrr/simplecolorpalettes/palettes/vim/luna" ) func main() { - colors := material.GetShadesForColorName(material.Red) - colors = luna.GetPalette() + colors := luna.GetPalette() colors = colors.ToExtendedAnsi() var open []string var close []string