defshow(self:"RoutineBase",*args,batch_index:int=0):"""Show an interactive plot of the routine. batch_index: int which parameter set out of the batch to use. Default is 0. If there are no batch parameters, use 0. *args: Any Specify the parameters that are defined in the `.args([...])` build step. """ifself.sourceisNone:raiseValueError("Cannot show a routine without a source Builder.")returnself.source.show(*args,batch_id=batch_index)