mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
hound
This commit is contained in:
parent
2d3ae5a0d3
commit
e61d03556a
1 changed files with 2 additions and 1 deletions
|
|
@ -57,7 +57,8 @@ class ValidateLoadedPlugin(OptionalPyblishPluginMixin,
|
|||
instance_families.update(instance.data.get("families", []))
|
||||
self.log.debug(f"{instance_families}")
|
||||
# In the for loop check whether any family matches
|
||||
match_families = {fam.strip() for fam in families.split(",") if fam.strip()}
|
||||
match_families = {fam.strip() for fam in
|
||||
families.split(",") if fam.strip()}
|
||||
self.log.debug(f"match_families: {match_families}")
|
||||
has_match = "*" in match_families or match_families.intersection(
|
||||
instance_families) or families == "_"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue