Skip to content

Commit 3d2d554

Browse files
committed
writekkit: cleanup
1 parent eb88a23 commit 3d2d554

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/moose/genesis/writeKkit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -664,8 +664,8 @@ def getColorCheck(color,GENESIS_COLOR_SEQUENCE):
664664
index = color
665665
return index
666666
elif isinstance(color, tuple):
667-
#color = [int(x) for x in color[0:3]]
668-
color = map(int,color)[0:3]
667+
color = [int(x) for x in color[0:3]]
668+
#color = map(int,color)
669669
index = nearestColorIndex(color, GENESIS_COLOR_SEQUENCE)
670670
return index
671671
elif isinstance(color, int):

0 commit comments

Comments
 (0)