tiqi-group / pydase

A flexible and robust Python library for creating, managing, and interacting with data services, with built-in support for web and RPC servers, and customizable features for diverse use cases.
MIT License
0 stars 1 forks source link

fixed serialization of class deriving from class which derives from DataService #83

Closed mosmuell closed 6 months ago

mosmuell commented 6 months ago

Serialization of DataService instances was handled by calculating the difference between the attributes of the instance and its base class. This PR fixed this by calculating the difference between the attributes of the instance and the DataService class.