From a413191cff4d07afc0f9108a5a9a9507fb3dd70c Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Sun, 30 Apr 2023 22:27:38 +0200 Subject: [PATCH] Fixes deprecation --- ohmpi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmpi.py b/ohmpi.py index 82ca0b47..a72513a2 100644 --- a/ohmpi.py +++ b/ohmpi.py @@ -1153,7 +1153,7 @@ class OhmPi(object): """ self.reset_mux() # All mux boards should be reset even if we only want to test one otherwise we might create a shortcut if mux_id is None: - self._hw.test_mux(activation_time) + self._hw.test_mux(activation_time=activation_time) else: self._hw.mux_boards[mux_id].test(activation_time=activation_time) -- GitLab