Esempio n. 1
0
    def __init__(self, conf, data=None):
        self.conf = conf

        if data:
            self.incubator = Incubator(conf, data=data['incubator'])
            self.core = Core(conf, data=data['core'])
        else:
            self.incubator = Incubator(conf)
            self.core = Core(conf)