Skip to content

Commit

Permalink
make sure instance members are always list value
Browse files Browse the repository at this point in the history
  • Loading branch information
moonyuet committed Aug 29, 2024
1 parent ef10b13 commit 555ea83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/ayon_unreal/api/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ def _default_collect_instances(self):
instance.get('creator_attributes', '{}'))
instance['publish_attributes'] = ast.literal_eval(
instance.get('publish_attributes', '{}'))
instance['members'] = ast.literal_eval(
instance.get('members', '[]'))
created_instance = CreatedInstance.from_existing(instance, self)
self._add_instance_to_context(created_instance)

Expand Down

0 comments on commit 555ea83

Please sign in to comment.