From f09436b914d134095c01a8c5fda95cf95fafde05 Mon Sep 17 00:00:00 2001 From: Michel F <80367602+MrWaloo@users.noreply.github.com> Date: Mon, 29 Dec 2025 23:56:11 +0100 Subject: [PATCH] ModbusServerContext.device_ids() docstring According to [the following discussion ](https://github.com/pymodbus-dev/pymodbus/discussions/2834), the docstring has to be modified. --- pymodbus/datastore/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymodbus/datastore/context.py b/pymodbus/datastore/context.py index 0efd2456f..58491652a 100644 --- a/pymodbus/datastore/context.py +++ b/pymodbus/datastore/context.py @@ -223,5 +223,5 @@ def __getitem__(self, device_id): ) def device_ids(self): - """Define device_ids.""" + """Get the configured device ids.""" return list(self._devices.keys())