fix: Removed ineffectual assignment

This commit is contained in:
Ethan Holz
2022-10-11 15:12:47 -05:00
parent b6cfa96e93
commit cae1727bf5

View File

@@ -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