We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f38de5 commit 927f9d3Copy full SHA for 927f9d3
qcodes/instrument/ip_to_visa.py
@@ -14,7 +14,7 @@
14
# Such a driver is just a two-line class definition.
15
16
17
-class IPToVisa(VisaInstrument, IPInstrument):
+class IPToVisa(VisaInstrument, IPInstrument): # type: ignore
18
"""
19
Class to inject an VisaInstrument like behaviour in an
20
IPInstrument that we'd like to use as a VISAInstrument with the
@@ -78,5 +78,5 @@ def close(self):
78
self.remove_instance(self)
79
80
81
-class AMI430_VISA(AMI430, IPToVisa):
+class AMI430_VISA(AMI430, IPToVisa): # type: ignore
82
pass
0 commit comments