We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1ed9cb + 32e46d9 commit fa22b43Copy full SHA for fa22b43
2 files changed
labscript/base.py
@@ -93,6 +93,7 @@ def __init__(
93
self.connection = connection
94
self.start_order = start_order
95
self.stop_order = stop_order
96
+ self.BLACS_connection = ""
97
if start_order is not None and not isinstance(start_order, int):
98
raise TypeError(
99
f"Error when instantiating {name}. start_order must be an integer, not "
labscript/labscript.py
@@ -229,7 +229,7 @@ def generate_connection_table(hdf5_file):
229
devicedict = {}
230
231
# Only use a string dtype as long as is needed:
232
- max_BLACS_conn_length = -1
+ max_BLACS_conn_length = 0
233
234
for device in compiler.inventory:
235
devicedict[device.name] = device
0 commit comments