We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e6166e commit 6c5f43eCopy full SHA for 6c5f43e
1 file changed
tests/drivers/test_keithley_26xx.py
@@ -1,17 +1,19 @@
1
from collections import Counter
2
-from typing import cast
+from typing import TYPE_CHECKING, cast
3
from unittest.mock import patch
4
5
import numpy as np
6
import pytest
7
8
from qcodes.dataset import LinSweep
9
from qcodes.instrument_drivers.Keithley import (
10
- Keithley2600Channel,
11
Keithley2600MeasurementStatus,
12
Keithley2614B,
13
)
14
+if TYPE_CHECKING:
15
+ from qcodes.instrument_drivers.Keithley import Keithley2600Channel
16
+
17
18
@pytest.fixture(scope="function", name="driver")
19
def _make_driver():
0 commit comments