Skip to content
Snippets Groups Projects
Commit b2d2b5cf authored by Taya Snijder's avatar Taya Snijder
Browse files

removed argument from pass function

parent cb917696
No related branches found
No related tags found
1 merge request!32Resolve L2SS-216 "2021 05 17 branched from master sdp hotfix"
...@@ -139,11 +139,11 @@ class attribute_wrapper(attribute): ...@@ -139,11 +139,11 @@ class attribute_wrapper(attribute):
logger.error("Exception while setting {} attribute with annotation: '{}'".format(client.__class__.__name__, self.comms_annotation)) logger.error("Exception while setting {} attribute with annotation: '{}'".format(client.__class__.__name__, self.comms_annotation))
raise Exception("Exception while setting %s attribute with annotation: '%s'", client.__class__.__name__, self.comms_annotation) from e raise Exception("Exception while setting %s attribute with annotation: '%s'", client.__class__.__name__, self.comms_annotation) from e
def set_pass_func(self, client): def set_pass_func(self):
def pass_func(value=None): def pass_func(value=None):
pass pass
logger.debug("using pass function for {} attribute with annotation: {}".format(client.__class__.__name__, self.comms_annotation)) logger.debug("using pass function for attribute with annotation: {}".format(self.comms_annotation))
self.read_function = pass_func self.read_function = pass_func
self.write_function = pass_func self.write_function = pass_func
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment