( self )
| 37 | class 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 |
nothing calls this directly
no test coverage detected