aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugeniy E. Mikhailov <evgmik@gmail.com>2021-12-02 16:20:15 -0500
committerEugeniy E. Mikhailov <evgmik@gmail.com>2021-12-02 16:20:15 -0500
commit6f1ce1e7f393c8969c68acc6e5aca3cbf46278d2 (patch)
treef72ffeb85f0c6c890e33bc57f85232be698213ef
parent4035e1dfd9cc16fc4eb730cb51adf6a5963269bf (diff)
downloadqolab-6f1ce1e7f393c8969c68acc6e5aca3cbf46278d2.tar.gz
qolab-6f1ce1e7f393c8969c68acc6e5aca3cbf46278d2.zip
moved comments
-rw-r--r--qolab/hardware/scope/__init__.py5
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):