From 988ec5c7e249a0405b21adfd013e621047ecce12 Mon Sep 17 00:00:00 2001 From: Yann Sionneau Date: Fri, 19 Jun 2015 10:40:10 +0200 Subject: [PATCH] tdc/tpz driver: fix missing close method in simulated device --- artiq/devices/thorlabs_tcube/driver.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/artiq/devices/thorlabs_tcube/driver.py b/artiq/devices/thorlabs_tcube/driver.py index f023d41d0..b3403a03d 100644 --- a/artiq/devices/thorlabs_tcube/driver.py +++ b/artiq/devices/thorlabs_tcube/driver.py @@ -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