Hi Mark,
Thanks for starting the Python 3 repo!
Unfortunately I've noticed you can no longer add MetaClasses to a set anymore; this now raises a TypeError because MetaClass is an unhashable type.
My test code (working in Python 2, not in 3)
from Red9 import setup
setup.start()
import Red9.core.Red9_Meta as r9m
from maya import cmds
group = cmds.group(name='test', empty=True)
testNode = r9m.MetaClass(node=group, name='TestMetaNode')
s = set()
s.add(testNode)
Let me know if I can help with more info.
Hi Mark,
Thanks for starting the Python 3 repo!
Unfortunately I've noticed you can no longer add MetaClasses to a set anymore; this now raises a TypeError because MetaClass is an unhashable type.
My test code (working in Python 2, not in 3)
Let me know if I can help with more info.