( self )
| 198 | class PostProcessor( IECore.ModifyOp ) : |
| 199 | |
| 200 | def __init__( self ) : |
| 201 | |
| 202 | IECore.ModifyOp.__init__( self, "", IECore.IntParameter( "result", "" ), IECore.IntParameter( "input", "" ) ) |
| 203 | |
| 204 | def modify( self, obj, args ) : |
| 205 |
nothing calls this directly
no test coverage detected