From 6c83cf9725e0c8c81fe3ffad5f9a2a75dd0188dc Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Sun, 30 Apr 2023 16:44:40 +0200 Subject: [PATCH] Removes the default_mux_cabling in hardware system --- hardware_components/abstract_hardware_components.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardware_components/abstract_hardware_components.py b/hardware_components/abstract_hardware_components.py index c92ce306..4a1b1350 100644 --- a/hardware_components/abstract_hardware_components.py +++ b/hardware_components/abstract_hardware_components.py @@ -116,8 +116,8 @@ class MuxAbstract(ABC): if (elec, role) in self.cabling.keys(): self.switch_one(elec, role, state) else: - self.exec_logger.debug(f'{self.board_id} skipping switching {(elec, role)} because it is' - f'is not in board cabling') + self.exec_logger.debug(f'{self.board_id} skipping switching {(elec, role)} because it' + f'is not in board cabling {self.cabling}') self.exec_logger.debug(f'{self.board_id} switching done.') else: self.exec_logger.warning(f'Missing argument for {self.board_name}.switch: elec_dict is None.') -- GitLab