From ee708f7b02d98227d58bfb03a87895ad0e8e76c4 Mon Sep 17 00:00:00 2001 From: Oksana Shliakhtun Date: Tue, 24 Jan 2023 18:12:25 +0100 Subject: [PATCH] fix typo in frappy_psi.mixins Change-Id: Ifccb6278bbfc221882067a2ae8c72d0163e5f351 --- frappy_psi/mixins.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappy_psi/mixins.py b/frappy_psi/mixins.py index 7e1c137..5e82eac 100644 --- a/frappy_psi/mixins.py +++ b/frappy_psi/mixins.py @@ -20,8 +20,8 @@ # # ***************************************************************************** -from secop.datatypes import BoolType, EnumType, Enum -from secop.core import Parameter, Writable, Attached +from frappy.datatypes import BoolType, EnumType, Enum +from frappy.core import Parameter, Writable, Attached class HasControlledBy(Writable): @@ -80,7 +80,7 @@ class HasOutputModule(Writable): """ out = self.output_module if out: - for name, control_off in out.inputCallbacks.itrems(): + for name, control_off in out.inputCallbacks.items(): if name != self.name: control_off(self.name) out.controlled_by = self.name