aboutsummaryrefslogtreecommitdiff
path: root/qolab/hardware/scope
diff options
context:
space:
mode:
Diffstat (limited to 'qolab/hardware/scope')
-rw-r--r--qolab/hardware/scope/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/qolab/hardware/scope/__init__.py b/qolab/hardware/scope/__init__.py
index b89e2b6..c573edf 100644
--- a/qolab/hardware/scope/__init__.py
+++ b/qolab/hardware/scope/__init__.py
@@ -14,7 +14,6 @@ class Scope(BasicInstrument):
def __init__(self):
BasicInstrument.__init__(self)
self.config['Device type']='Scope'
- self.config['FnamePrefix'] = 'scope'
self.config['Device model'] = 'Generic Scope Without Hardware interface'
self.config['FnamePrefix'] = 'scope'
self.numberOfChannels = 0
@@ -78,7 +77,6 @@ class ScopeSCPI(SCPIinstr, Scope):
rm = pyvisa.ResourceManager()
ScopeSCPI(rm.open_resource('TCPIP::192.168.0.2::INSTR'))
"""
- pass
def __init__(self, resource):
SCPIinstr.__init__(self, resource)
Scope.__init__(self)