MCPcopy Create free account
hub / github.com/ImageEngine/cortex / __init__

Method __init__

python/IECore/SequenceCatOp.py:39–58  ·  view source on GitHub ↗
( self )

Source from the content-addressed store, hash-verified

37class SequenceCatOp( IECore.Op ) :
38
39 def __init__( self ) :
40
41 IECore.Op.__init__( self, "Concatenates file sequences to stdout.",
42 IECore.IntParameter(
43 name = "result",
44 description = "The number of files .",
45 defaultValue = 0,
46 )
47 )
48
49 self.parameters().addParameter(
50 IECore.FileSequenceParameter(
51 name = "src",
52 description = "The source file sequence.",
53 defaultValue = "",
54 check = IECore.FileSequenceParameter.CheckType.MustExist,
55 allowEmptyString = False,
56 minSequenceSize = 1,
57 )
58 )
59
60 def doOperation( self, operands ) :
61

Callers

nothing calls this directly

Calls 3

FileSequenceParameterMethod · 0.80
addParameterMethod · 0.45
parametersMethod · 0.45

Tested by

no test coverage detected