Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exopy_qcircuits/instruments/drivers/visa/keysight_ena.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import time

try:
from visa import ascii, single, double
from pyvisa import ascii, single, double
except ImportError:
ascii = 2
single = 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import numpy as np

try:
from visa import ascii, single, double
from pyvisa import ascii, single, double
except ImportError:
ascii = 2
single = 1
Expand Down
2 changes: 1 addition & 1 deletion exopy_qcircuits/instruments/drivers/visa/tabor_awg.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from ..driver_tools import (BaseInstrument, InstrIOError, secure_communication,
instrument_property)
from ..visa_tools import VisaInstrument
from visa import VisaTypeError
from pyvisa import VisaTypeError
from textwrap import fill
from inspect import cleandoc
import re
Expand Down