mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
11 lines
278 B
Python
11 lines
278 B
Python
import pyblish.api
|
|
|
|
|
|
class CollectComment(pyblish.api.ContextPlugin):
|
|
"""This plug-ins displays the comment dialog box per default"""
|
|
|
|
label = "Collect Comment"
|
|
order = pyblish.api.CollectorOrder
|
|
|
|
def process(self, context):
|
|
context.data["comment"] = ""
|