You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
700 B
Python
31 lines
700 B
Python
import os, sys, importlib, glob, inspect, itertools
|
|
|
|
from ffx.track_type import TrackType
|
|
|
|
from ffx.track_descriptor import TrackDescriptor
|
|
from ffx.media_descriptor import MediaDescriptor
|
|
|
|
from .label_combinator import LabelCombinator
|
|
|
|
class LabelCombinator1(LabelCombinator):
|
|
|
|
VARIANT = 'L1'
|
|
|
|
def __init__(self, context = None):
|
|
|
|
self._context = context
|
|
self._logger = context['logger']
|
|
self._reportLogger = context['report_logger']
|
|
|
|
def getVariant(self):
|
|
return LabelCombinator1.VARIANT
|
|
|
|
def getPayload(self):
|
|
return LabelCombinator.LABEL
|
|
|
|
def assertFunc(self, testObj = {}):
|
|
pass
|
|
|
|
def shouldFail(self):
|
|
return False
|