We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You can have same named instances in different families, which messes with the processing of the instances.
import pyblish.api class SameNames(pyblish.api.Collector): """""" def process(self, context): instance = context.create_instance(name='scene') instance.set_data('family', value='render') instance = context.create_instance(name='scene') instance.set_data('family', value='scene') pyblish.api.register_plugin(SameNames) import pyblish_maya pyblish_maya.show()
The text was updated successfully, but these errors were encountered:
Good find! This has been missed by a large number of tests!
Sorry, something went wrong.
Fixing pyblish#219
de2e90b
8068fcb
No branches or pull requests
You can have same named instances in different families, which messes with the processing of the instances.
The text was updated successfully, but these errors were encountered: