From 4d12fe41880024fc902301102f4c017c96151947 Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Tue, 2 May 2023 19:24:08 +0200 Subject: [PATCH] Rewrites rs_check --- ohmpi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmpi.py b/ohmpi.py index 1a587b8e..1213404d 100644 --- a/ohmpi.py +++ b/ohmpi.py @@ -665,7 +665,7 @@ class OhmPi(object): """ # create custom sequence where MN == AB # we only check the electrodes which are in the sequence (not all might be connected) - if self.sequence is None or not self.use_mux: + if self.sequence is None: quads = np.array([[1, 2, 1, 2]], dtype=np.uint32) else: elec = np.sort(np.unique(self.sequence.flatten())) # assumed order -- GitLab