Update client/ayon_core/pipeline/publish/publish_plugins.py

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Roy Nieterau 2025-01-31 23:30:04 +01:00 committed by GitHub
parent 64b6729eec
commit e1438ed597
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -309,10 +309,12 @@ class OptionalPyblishPluginMixin(AYONPyblishPluginMixin):
label = cls.label or cls.__name__
return [
BoolDef("active",
default=active,
label=label,
tooltip=cls.optional_tooltip)
BoolDef(
"active",
default=active,
label=label,
tooltip=cls.optional_tooltip,
)
]
def is_active(self, data):