removes unnecessary "..." literal

This commit is contained in:
Mose Müller 2023-12-04 14:21:51 +01:00
parent 3992f491c9
commit 43e6adcb2e
2 changed files with 0 additions and 3 deletions

View File

@ -37,7 +37,6 @@ class ObservableObject(ABC):
of observers. This is a crucial step to avoid unwanted notifications from of observers. This is a crucial step to avoid unwanted notifications from
the old value of the attribute. the old value of the attribute.
""" """
...
def _notify_changed(self, changed_attribute: str, value: Any) -> None: def _notify_changed(self, changed_attribute: str, value: Any) -> None:
"""Notifies all observers about changes to an attribute. """Notifies all observers about changes to an attribute.
@ -123,7 +122,6 @@ class ObservableObject(ABC):
Returns: Returns:
str: The constructed extended attribute path. str: The constructed extended attribute path.
""" """
...
class _ObservableList(ObservableObject, list[Any]): class _ObservableList(ObservableObject, list[Any]):

View File

@ -68,7 +68,6 @@ class AdditionalServerProtocol(Protocol):
"""Starts the server. This method should be implemented as an asynchronous """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. method, which means that it should be able to run concurrently with other tasks.
""" """
...
class AdditionalServer(TypedDict): class AdditionalServer(TypedDict):