diff --git a/yin_yang/plugins/_plugin.py b/yin_yang/plugins/_plugin.py index a8b98d5..9960842 100644 --- a/yin_yang/plugins/_plugin.py +++ b/yin_yang/plugins/_plugin.py @@ -279,7 +279,7 @@ def call(self) -> QDBusMessage: return self.connection.call(self.message) def list_paths(self, service: str, path: str) -> List[str]: - """ Get all subpath under given pth of service + """ Get all subpath under a given pth of service :path: should start with / but without / on its end """ assert path.startswith('/') and not path.endswith('/'), "list_paths wrong, :path: should start with / but without / on its end"