From 6ecb3cd276dce83519d990316a8c2cb081c36f31 Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Fri, 23 Jun 2023 08:45:28 +0200 Subject: [PATCH] Implements rs_check --- ohmpi/hardware_components/abstract_hardware_components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmpi/hardware_components/abstract_hardware_components.py b/ohmpi/hardware_components/abstract_hardware_components.py index c8d8b935..83746c6c 100644 --- a/ohmpi/hardware_components/abstract_hardware_components.py +++ b/ohmpi/hardware_components/abstract_hardware_components.py @@ -169,7 +169,7 @@ class MuxAbstract(ABC): # the full voltage of the DPS if 'A' in elec_dict.keys() and 'B' in elec_dict.keys() and 'M' in elec_dict.keys() and 'N' in elec_dict.keys(): if bypass_check: - self.exec_logger.debugg(f'Bypassing :{bypass_check}') + self.exec_logger.debug(f'Bypassing :{bypass_check}') elif (np.in1d(elec_dict['M'], elec_dict['A']).any() # noqa or np.in1d(elec_dict['M'], elec_dict['B']).any() # noqa or np.in1d(elec_dict['N'], elec_dict['A']).any() # noqa -- GitLab