mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-05 13:10:41 +02:00
docs: fixing typos
This commit is contained in:
parent
fe5d0eed2d
commit
6f3910efd0
@ -827,13 +827,13 @@ class Service(pydase.DataService):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def value(self) -> float:
|
def value(self) -> float:
|
||||||
# Implement how to get the value from the remove device...
|
# Implement how to get the value from the remote device...
|
||||||
return self._device.value
|
return self._device.value
|
||||||
|
|
||||||
@value.setter
|
@value.setter
|
||||||
@validate_set(timeout=1.0, precision=1e-5)
|
@validate_set(timeout=1.0, precision=1e-5)
|
||||||
def value(self, value: float) -> None:
|
def value(self, value: float) -> None:
|
||||||
# Implement how to set the value from the remove device...
|
# Implement how to set the value on the remote device...
|
||||||
self._device.value = value
|
self._device.value = value
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user