1.8.9
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!