Thanks to visit codestin.com Credit goes to github.com
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 f67a50c commit d7300f8Copy full SHA for d7300f8
1 file changed
Tools/pynche/TypeinViewer.py
@@ -93,7 +93,7 @@ def __validate(self, text):
93
def __modified(self):
94
# these are guaranteed to be valid, right?
95
vals = map(lambda x: x.get(), (self.__x, self.__y, self.__z))
96
- rgbs = map(self.__str_to_int, vals)
+ rgbs = tuple(map(self.__str_to_int, vals))
97
valids = map(self.__validate, vals)
98
delegate = self['delegate']
99
if (None not in rgbs) and (-1 not in valids) and delegate:
0 commit comments