Merge pull request #4298 from ynput/feature/OP-4339_Publisher-add-more-abstract-methods

General: Added install method with docstring to HostBase
This commit is contained in:
Jakub Trllo 2023-01-10 16:59:44 +01:00 committed by GitHub
commit 71f15ff7f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,6 +76,18 @@ class HostBase(object):
pass
def install(self):
"""Install host specific functionality.
This is where should be added menu with tools, registered callbacks
and other host integration initialization.
It is called automatically when 'openpype.pipeline.install_host' is
triggered.
"""
pass
@property
def log(self):
if self._log is None: