Skip to content

Commit 5f11f03

Browse files
Merge pull request #1099 from kehrazy:patch-1
PiperOrigin-RevId: 531313426
2 parents 61d0755 + 0dd1c81 commit 5f11f03

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

openhtf/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import signal
1717
import typing
1818

19-
from openhtf import plugs
2019
from openhtf.core import phase_executor
2120
from openhtf.core import test_record
2221
import openhtf.core.base_plugs
@@ -29,6 +28,7 @@
2928
import openhtf.core.phase_group
3029
import openhtf.core.phase_nodes
3130
import openhtf.core.test_descriptor
31+
import openhtf.plugs
3232
import openhtf.util
3333
from openhtf.util import configuration
3434
from openhtf.util import console_output
@@ -86,7 +86,8 @@
8686
'conf',
8787
)
8888

89-
plug = plugs.plug
89+
plugs = openhtf.plugs
90+
plug = openhtf.plugs.plug
9091
BasePlug = openhtf.core.base_plugs.BasePlug
9192

9293
DiagnosesStore = openhtf.core.diagnoses_lib.DiagnosesStore

0 commit comments

Comments
 (0)