24
0
mirror of https://github.com/tiqi-group/pydase.git synced 2025-05-12 02:10:07 +02:00

fixes warnings in ProxyClassMixin

This commit is contained in:
Mose Müller 2024-04-04 16:30:26 +02:00
parent 690ecd7317
commit 6335ea21ad

@ -55,11 +55,12 @@ class ProxyList(list[Any]):
class ProxyClassMixin:
def __init__(self) -> None:
# declare before DataService init to avoid warning messaged
self._observers: dict[str, Any] = {}
self._proxy_getters: dict[str, Callable[..., Any]] = {}
self._proxy_setters: dict[str, Callable[..., Any]] = {}
self._proxy_methods: dict[str, Callable[..., Any]] = {}
# declare before DataService init to avoid warning messaged
self._observers: dict[str, Any] = {}
def _initialise(
self,