Skip to content
Snippets Groups Projects
Commit a69c7451 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Groan. It is tolist() and not to_list().

parent b8d97c24
No related branches found
No related tags found
No related merge requests found
......@@ -286,7 +286,7 @@ class SDP(Device):
@fault_on_error
def write_fpga_mask_RW(self, value):
"""Return the fpga_mask_RW attribute."""
self.attribute_mapping["fpga_mask_RW"].set_value(value.to_list())
self.attribute_mapping["fpga_mask_RW"].set_value(value.tolist())
_fpga_mask_RW = value
return
......@@ -307,7 +307,7 @@ class SDP(Device):
@fault_on_error
def write_fpga_scrap_RW(self, value):
"""Return the fpga_scrap_RW attribute."""
self.attribute_mapping["fpga_scrap_RW"].set_value(value.to_list())
self.attribute_mapping["fpga_scrap_RW"].set_value(value.tolist())
_fpga_scrap_RW = value
return
......
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