fixing ruff formatting error

This commit is contained in:
Mose Müller 2024-08-19 09:53:54 +02:00
parent f50976358b
commit 6765246231

View File

@ -24,8 +24,7 @@ class Observer(ABC):
self.on_change_start(changing_attribute)
@abstractmethod
def on_change(self, full_access_path: str, value: Any) -> None:
...
def on_change(self, full_access_path: str, value: Any) -> None: ...
def on_change_start(self, full_access_path: str) -> None:
return