FAAM-146 / decades-ppandas

1 stars 0 forks source link

Processing outputs not handled by backends #1

Open davesproson opened 4 years ago

davesproson commented 4 years ago

When outputs are added to backends via the dataset, they are handled only by the base class rather than having backend-specific impoementations:

def add_output(self, variable):
    self.outputs.append(variable)

def clear_outputs(self):
    self.outputs = []