From 6f1ce1e7f393c8969c68acc6e5aca3cbf46278d2 Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Thu, 2 Dec 2021 16:20:15 -0500 Subject: moved comments --- qolab/hardware/scope/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'qolab/hardware') 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): -- cgit v1.2.3