Closedown

This commit is contained in:
gac-x12sa
2023-01-05 11:44:30 +01:00
parent e92a08c37a
commit 0ca15f142f
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ class Detector(DeviceBase):
DeviceBase.__init__(self, name)
def doInitialize(self):
super(DeviceBase, self).doInitialize()
pass
def start():
setState(State.Busy)
@@ -12,4 +12,4 @@ class Detector(DeviceBase):
setState(State.Ready)
def doClose(self):
super(DeviceBase, self).doClose()
pass

View File

@@ -3,7 +3,7 @@ class StdDaq(DeviceBase):
DeviceBase.__init__(self, name)
def doInitialize(self):
super(DeviceBase, self).doInitialize()
pass
def start():
setState(State.Busy)
@@ -12,5 +12,5 @@ class StdDaq(DeviceBase):
setState(State.Ready)
def doClose(self):
super(DeviceBase, self).doClose()
pass