mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-22 01:00:02 +02:00
adds todos
This commit is contained in:
parent
f2cf0d9c1a
commit
8971cebfcd
@ -44,6 +44,8 @@ class DataServiceObserver(PropertyObserver):
|
|||||||
|
|
||||||
self._update_cache_value(full_access_path, value, cached_value_dict)
|
self._update_cache_value(full_access_path, value, cached_value_dict)
|
||||||
|
|
||||||
|
# TODO: get the cached value again -> _update_cache_value already put the
|
||||||
|
# right thing into the cache
|
||||||
for callback in self._notification_callbacks:
|
for callback in self._notification_callbacks:
|
||||||
callback(full_access_path, value, cached_value_dict)
|
callback(full_access_path, value, cached_value_dict)
|
||||||
|
|
||||||
|
@ -273,6 +273,8 @@ def set_nested_value_by_path(
|
|||||||
value_type = serialized_value.pop("type")
|
value_type = serialized_value.pop("type")
|
||||||
if "readonly" in current_dict and current_dict["type"] != "method":
|
if "readonly" in current_dict and current_dict["type"] != "method":
|
||||||
current_dict["type"] = value_type
|
current_dict["type"] = value_type
|
||||||
|
# TODO: this does not yet remove keys that are not present in the serialized new
|
||||||
|
# value
|
||||||
current_dict.update(serialized_value)
|
current_dict.update(serialized_value)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user