mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-05 05:00:40 +02:00
updates __getattribute__ of Observable
This commit is contained in:
parent
43e6adcb2e
commit
8f8b3e3bcf
@ -32,7 +32,11 @@ class Observable(ObservableObject):
|
||||
self._notify_changed(name, value)
|
||||
|
||||
def __getattribute__(self, name: str) -> Any:
|
||||
if is_property_attribute(self, name):
|
||||
self._notify_change_start(name)
|
||||
|
||||
value = super().__getattribute__(name)
|
||||
|
||||
if is_property_attribute(self, name):
|
||||
self._notify_changed(name, value)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user