2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-26 11:48:27 +08:00

added abstract describe method to ScanObject

Signed-off-by: Leon Riesebos <leon.riesebos@duke.edu>
This commit is contained in:
Leon Riesebos 2021-02-27 14:42:13 -05:00 committed by Sébastien Bourdeauducq
parent e577542f6b
commit cd7f9531d7

View File

@ -32,7 +32,8 @@ __all__ = ["ScanObject",
class ScanObject:
pass
def describe(self):
raise NotImplementedError
class NoScan(ScanObject):