mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
12 lines
327 B
Python
12 lines
327 B
Python
import pyblish.api
|
|
|
|
|
|
class ValidateFileSequences(pyblish.api.ContextPlugin):
|
|
"""Validates whether any file sequences were collected."""
|
|
|
|
order = pyblish.api.ValidatorOrder
|
|
targets = ["filesequence"]
|
|
label = "Validate File Sequences"
|
|
|
|
def process(self, context):
|
|
assert context, "Nothing collected."
|