-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0fd561
commit 6ec8056
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Fix spelling of the 2 incorrectly spelled classes | ||
```qcodes.instrument_drivers.tektronix.TekronixDPOTrigger``` and | ||
```qcodes.instrument_drivers.tektronix.TekronixDPOWaveform``` to | ||
```qcodes.instrument_drivers.tektronix.TektronixDPOTrigger``` | ||
and ```qcodes.instrument_drivers.tektronix.TektronixDPOWaveform``` . | ||
|
||
If you need to import these classes and support multiple qcodes versions we suggest wrapping an import with:: | ||
|
||
try: | ||
from qcodes.instrument_drivers.tektronix import TektronixDPOTrigger | ||
from qcodes.instrument_drivers.tektronix import TektronixDPOWaveform | ||
except ImportError: | ||
from qcodes.instrument_drivers.tektronix import TekronixDPOTrigger | ||
from qcodes.instrument_drivers.tektronix import TekronixDPOWaveform |