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.
2 parents 61d0755 + 0dd1c81 commit 5f11f03Copy full SHA for 5f11f03
openhtf/__init__.py
@@ -16,7 +16,6 @@
16
import signal
17
import typing
18
19
-from openhtf import plugs
20
from openhtf.core import phase_executor
21
from openhtf.core import test_record
22
import openhtf.core.base_plugs
@@ -29,6 +28,7 @@
29
28
import openhtf.core.phase_group
30
import openhtf.core.phase_nodes
31
import openhtf.core.test_descriptor
+import openhtf.plugs
32
import openhtf.util
33
from openhtf.util import configuration
34
from openhtf.util import console_output
@@ -86,7 +86,8 @@
86
'conf',
87
)
88
89
-plug = plugs.plug
+plugs = openhtf.plugs
90
+plug = openhtf.plugs.plug
91
BasePlug = openhtf.core.base_plugs.BasePlug
92
93
DiagnosesStore = openhtf.core.diagnoses_lib.DiagnosesStore
0 commit comments