mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-14 08:17:15 +02:00
reusing util function
This commit is contained in:
@ -65,7 +65,7 @@ class DataService(rpyc.Service, AbstractDataService):
|
|||||||
|
|
||||||
def __setattr__(self, __name: str, __value: Any) -> None:
|
def __setattr__(self, __name: str, __value: Any) -> None:
|
||||||
# converting attributes that are not properties
|
# converting attributes that are not properties
|
||||||
if not isinstance(getattr(type(self), __name, None), property):
|
if not is_property_attribute(self, __name):
|
||||||
current_value = getattr(self, __name, None)
|
current_value = getattr(self, __name, None)
|
||||||
# parse ints into floats if current value is a float
|
# parse ints into floats if current value is a float
|
||||||
if isinstance(current_value, float) and isinstance(__value, int):
|
if isinstance(current_value, float) and isinstance(__value, int):
|
||||||
|
Reference in New Issue
Block a user