From 3929d81c342377a9a0477dadf0d32b6195004282 Mon Sep 17 00:00:00 2001 From: thijs snijder <snijder@astron.nl> Date: Tue, 21 Dec 2021 12:47:54 +0100 Subject: [PATCH] updated docstring --- .../tangostationcontrol/clients/attribute_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py b/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py index 68ce528ee..e4b182927 100644 --- a/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py +++ b/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py @@ -76,7 +76,7 @@ class attribute_wrapper(attribute): @fault_on_error() def write_func_wrapper(device, value): """ - _write_RW writes a value to this attribute + write_func_wrapper writes a value to this attribute """ self.write_function(value) @@ -90,7 +90,7 @@ class attribute_wrapper(attribute): @fault_on_error() def read_func_wrapper(device): """ - _read_R reads the attribute value, stores it and returns it" + read_func_wrapper reads the attribute value, stores it and returns it" """ device.value_dict[self] = self.read_function() return device.value_dict[self] -- GitLab