fix typo in frappy_psi.mixins

Change-Id: Ifccb6278bbfc221882067a2ae8c72d0163e5f351
This commit is contained in:
Oksana Shliakhtun 2023-01-24 18:12:25 +01:00
parent edc942cb24
commit ee708f7b02

View File

@ -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