diff --git a/devolo_plc_api/device.py b/devolo_plc_api/device.py index 49b7098..cd13342 100644 --- a/devolo_plc_api/device.py +++ b/devolo_plc_api/device.py @@ -133,7 +133,7 @@ async def async_disconnect(self) -> None: self._connected = False def disconnect(self) -> None: - """ Disconnect from a device asynchronous. """ + """ Disconnect from a device synchronous. """ asyncio.gather(self.async_disconnect()) self._loop.close()