Skip to content

Commit

Permalink
Merge pull request #200 from jenshnielsen/qcodes_37
Browse files Browse the repository at this point in the history
support qcodes 0.37
  • Loading branch information
jenshnielsen authored Jan 30, 2023
2 parents 772f832 + 5fd491a commit 978db22
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion qcodes_contrib_drivers/tests/test_Keysight_M3201A.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from qcodes.instrument_drivers.test import DriverTestCase
try:
from qcodes.tests.driver_test_case import DriverTestCase
except ImportError:
# qcodes < 0.37
from qcodes.instrument_drivers.test import DriverTestCase # type: ignore[import,no-redef]
import unittest

try:
Expand Down

0 comments on commit 978db22

Please sign in to comment.