Skip to content

1.8.9

Compare
Choose a tag to compare
@mottosso mottosso released this 19 Oct 05:55
· 35 commits to master since this release
4bfd6e1

Minor addition to unify arguments to Context.create_instance() and Instance().

from pyblish import api
context = api.Context()
instance = context.create_instance("pony", color="blue")
same_instance = api.Instance("pony", color="blue")
context.append(same_instance)

See #372 for details and thanks to @hannesdelbeke for this update!