We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb88a23 commit 3d2d554Copy full SHA for 3d2d554
python/moose/genesis/writeKkit.py
@@ -664,8 +664,8 @@ def getColorCheck(color,GENESIS_COLOR_SEQUENCE):
664
index = color
665
return index
666
elif isinstance(color, tuple):
667
- #color = [int(x) for x in color[0:3]]
668
- color = map(int,color)[0:3]
+ color = [int(x) for x in color[0:3]]
+ #color = map(int,color)
669
index = nearestColorIndex(color, GENESIS_COLOR_SEQUENCE)
670
671
elif isinstance(color, int):
0 commit comments