diff options
-rw-r--r-- | qolab/hardware/scope/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/qolab/hardware/scope/__init__.py b/qolab/hardware/scope/__init__.py index a323b8f..bbe2653 100644 --- a/qolab/hardware/scope/__init__.py +++ b/qolab/hardware/scope/__init__.py @@ -7,13 +7,12 @@ from qolab.hardware.scpi import SCPIinstr class Scope: # Minimal set of methods to be implemented by a scope. - # Should work with minimal arguments list - # but might be faster if parameters provided: less IO requests - def __init__(self): self.numberOfChannels = 0 def getTrace(self, chNum, availableNpnts=None, maxRequiredPoints=None): + # Should work with minimal arguments list + # but might be faster if parameters provided: less IO requests warnings.warn( 'this function is not implemented' ) class ScopeSCPI(SCPIinstr, Scope): |