Skip to content

Commit

Permalink
Fix: Workfile have hero versions published (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilix4 authored and kaamaurice committed Mar 13, 2023
1 parent 1c6162b commit 00ddce0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openpype/plugins/publish/integrate_hero_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class IntegrateHeroVersion(pyblish.api.InstancePlugin):
active = True

# Families are modified using settings
families = IntegrateAsset.families
# TODO can't we use sets?
families = list(set(IntegrateAsset.families) - {"workfile"})

# Can specify representation names that will be ignored (lower case)
ignored_representation_names = []
Expand Down

0 comments on commit 00ddce0

Please sign in to comment.