mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-22 17:10:02 +02:00
removes unnecessary "..." literal
This commit is contained in:
parent
3992f491c9
commit
43e6adcb2e
@ -37,7 +37,6 @@ class ObservableObject(ABC):
|
||||
of observers. This is a crucial step to avoid unwanted notifications from
|
||||
the old value of the attribute.
|
||||
"""
|
||||
...
|
||||
|
||||
def _notify_changed(self, changed_attribute: str, value: Any) -> None:
|
||||
"""Notifies all observers about changes to an attribute.
|
||||
@ -123,7 +122,6 @@ class ObservableObject(ABC):
|
||||
Returns:
|
||||
str: The constructed extended attribute path.
|
||||
"""
|
||||
...
|
||||
|
||||
|
||||
class _ObservableList(ObservableObject, list[Any]):
|
||||
|
@ -68,7 +68,6 @@ class AdditionalServerProtocol(Protocol):
|
||||
"""Starts the server. This method should be implemented as an asynchronous
|
||||
method, which means that it should be able to run concurrently with other tasks.
|
||||
"""
|
||||
...
|
||||
|
||||
|
||||
class AdditionalServer(TypedDict):
|
||||
|
Loading…
x
Reference in New Issue
Block a user