Skip to content

Commit 988ec5c

Browse files
committedJun 19, 2015
tdc/tpz driver: fix missing close method in simulated device
1 parent 1d05209 commit 988ec5c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

Diff for: ‎artiq/devices/thorlabs_tcube/driver.py

+6
Original file line numberDiff line numberDiff line change
@@ -1323,6 +1323,9 @@ def __init__(self):
13231323
self.voltage_limit = 150
13241324
self.hub_analog_input = 1
13251325

1326+
def close(self):
1327+
pass
1328+
13261329
def module_identify(self):
13271330
pass
13281331

@@ -1406,6 +1409,9 @@ def get_tpz_io_settings(self):
14061409

14071410

14081411
class TdcSim:
1412+
def close(self):
1413+
pass
1414+
14091415
def module_identify(self):
14101416
pass
14111417

0 commit comments

Comments
 (0)
Please sign in to comment.