From 419c0c48bd0d2e8903c35f29f9d70cbb11831bd6 Mon Sep 17 00:00:00 2001 From: LYXalex Date: Thu, 6 Nov 2025 17:07:55 -0800 Subject: [PATCH 1/2] add comment for list_registers function add comment to show what include the list_registers function --- deapi/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deapi/client.py b/deapi/client.py index afbd617..4460d8b 100644 --- a/deapi/client.py +++ b/deapi/client.py @@ -321,6 +321,7 @@ def list_properties(self, options=None, search=None): def list_registers(self, options=None, search=None): """ Get a list of register names from the current camera on DE-Server + for each register, it contains name of the register, address, RO or not, value of the register Parameters ---------- From f25a0a5d532f4594a8a2c0a77f0b17afa6267511 Mon Sep 17 00:00:00 2001 From: LYXalex Date: Thu, 6 Nov 2025 17:56:05 -0800 Subject: [PATCH 2/2] make the comment more clear --- deapi/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deapi/client.py b/deapi/client.py index 4460d8b..170d596 100644 --- a/deapi/client.py +++ b/deapi/client.py @@ -321,7 +321,7 @@ def list_properties(self, options=None, search=None): def list_registers(self, options=None, search=None): """ Get a list of register names from the current camera on DE-Server - for each register, it contains name of the register, address, RO or not, value of the register + for each register, it contains attributes: name of the register, address, Read only, value of the register Parameters ----------