Skip to content

Commit

Permalink
tdc/tpz driver: fix missing close method in simulated device
Browse files Browse the repository at this point in the history
fallen committed Jun 19, 2015
1 parent 1d05209 commit 988ec5c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions artiq/devices/thorlabs_tcube/driver.py
Original file line number Diff line number Diff line change
@@ -1323,6 +1323,9 @@ def __init__(self):
self.voltage_limit = 150
self.hub_analog_input = 1

def close(self):
pass

def module_identify(self):
pass

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


class TdcSim:
def close(self):
pass

def module_identify(self):
pass

0 comments on commit 988ec5c

Please sign in to comment.