You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment this is a read/write attribute on the class set from the outside. It is only ever set by its parent, so could be passed in the creation of children like in ophyd, but don't want to make the epics_signal_rw case messier:
At the moment this is a read/write attribute on the class set from the outside. It is only ever set by its parent, so could be passed in the creation of children like in ophyd, but don't want to make the
epics_signal_rw
case messier:There's not a nice way round setting the parent apart from doing
child._parent = self # noqa: SLF001
in the__setattr__
method.We should discuss
Acceptance Criteria
.parent
is a read-only public property with a suitable mechanism for settingThe text was updated successfully, but these errors were encountered: