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

Change numpy.str_ to numpy.str

parent 8accd225
Branches
Tags
No related merge requests found
...@@ -36,7 +36,7 @@ class SDP(Device): ...@@ -36,7 +36,7 @@ class SDP(Device):
- Device Property - Device Property
OPC_Server_Name OPC_Server_Name
- Type:numpy.str_ - Type:numpy.str
OPC_Server_Port OPC_Server_Port
- Type:'DevULong' - Type:'DevULong'
OPC_Time_Out OPC_Time_Out
...@@ -71,7 +71,7 @@ class SDP(Device): ...@@ -71,7 +71,7 @@ class SDP(Device):
# ----------------- # -----------------
OPC_Server_Name = device_property( OPC_Server_Name = device_property(
dtype=numpy.str_, dtype=numpy.str,
mandatory=True mandatory=True
) )
...@@ -116,7 +116,7 @@ class SDP(Device): ...@@ -116,7 +116,7 @@ class SDP(Device):
) )
fpga_version_R = attribute( fpga_version_R = attribute(
dtype = (numpy.str_,), dtype = (numpy.str,),
max_dim_x = 16, max_dim_x = 16,
) )
...@@ -132,19 +132,19 @@ class SDP(Device): ...@@ -132,19 +132,19 @@ class SDP(Device):
) )
sdp_info_R = attribute( sdp_info_R = attribute(
dtype = (numpy.str_,), dtype = (numpy.str,),
) )
sdp_tod_R = attribute( sdp_tod_R = attribute(
dtype = (numpy.str_,), dtype = (numpy.str,),
) )
translator_network_R = attribute( translator_network_R = attribute(
dtype = (numpy.str_,), dtype = (numpy.str,),
) )
translator_timing_R = attribute( translator_timing_R = attribute(
dtype = (numpy.str_,), dtype = (numpy.str,),
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment