fix typo in frappy_psi.mixins
Change-Id: Ifccb6278bbfc221882067a2ae8c72d0163e5f351
This commit is contained in:
parent
edc942cb24
commit
ee708f7b02
@ -20,8 +20,8 @@
|
|||||||
#
|
#
|
||||||
# *****************************************************************************
|
# *****************************************************************************
|
||||||
|
|
||||||
from secop.datatypes import BoolType, EnumType, Enum
|
from frappy.datatypes import BoolType, EnumType, Enum
|
||||||
from secop.core import Parameter, Writable, Attached
|
from frappy.core import Parameter, Writable, Attached
|
||||||
|
|
||||||
|
|
||||||
class HasControlledBy(Writable):
|
class HasControlledBy(Writable):
|
||||||
@ -80,7 +80,7 @@ class HasOutputModule(Writable):
|
|||||||
"""
|
"""
|
||||||
out = self.output_module
|
out = self.output_module
|
||||||
if out:
|
if out:
|
||||||
for name, control_off in out.inputCallbacks.itrems():
|
for name, control_off in out.inputCallbacks.items():
|
||||||
if name != self.name:
|
if name != self.name:
|
||||||
control_off(self.name)
|
control_off(self.name)
|
||||||
out.controlled_by = self.name
|
out.controlled_by = self.name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user