forked from M-Labs/artiq
tdc/tpz driver: fix missing close method in simulated device
This commit is contained in:
parent
1d052095ee
commit
988ec5c7e2
|
@ -1323,6 +1323,9 @@ class TpzSim:
|
|||
self.voltage_limit = 150
|
||||
self.hub_analog_input = 1
|
||||
|
||||
def close(self):
|
||||
pass
|
||||
|
||||
def module_identify(self):
|
||||
pass
|
||||
|
||||
|
@ -1406,6 +1409,9 @@ class TpzSim:
|
|||
|
||||
|
||||
class TdcSim:
|
||||
def close(self):
|
||||
pass
|
||||
|
||||
def module_identify(self):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in New Issue