diff --git a/ohmpi/hardware_system.py b/ohmpi/hardware_system.py index bf080d939bbef7d58d953b0e46e566c7051e0c4b..547917c71550996e0ba58ff7c3184a29ea5d55e6 100644 --- a/ohmpi/hardware_system.py +++ b/ohmpi/hardware_system.py @@ -105,9 +105,9 @@ class OhmPiHardware: mux_config.update(**HARDWARE_CONFIG['mux']['boards'][mux_id]) mux_module = importlib.import_module(f'ohmpi.hardware_components.{mux_config["model"]}') mux_config.update({'ctl': self.ctl}) - if isinstance(ctl, dict): ### TODO: is this needed? - mux_ctl_module = importlib.import_module(f'ohmpi.hardware_components.{mux_config["ctl"]["model"]}') - ctl = mux_ctl_module.Ctl(**self.ctl) + # if isinstance(ctl, dict): ### TODO: is this needed? + # mux_ctl_module = importlib.import_module(f'ohmpi.hardware_components.{mux_config["ctl"]["model"]}') + # ctl = mux_ctl_module.Ctl(**self.ctl) assert issubclass(type(mux_config['ctl']), CtlAbstract) io = mux_module.pop('io', self.ctl.connections[mux_config.pop('connection', 'i2c')]) mux_config.update({'io': io})