Skip to content

Commit

Permalink
Merge pull request #1099 from kehrazy:patch-1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 531313426
  • Loading branch information
copybara-github committed May 11, 2023
2 parents 61d0755 + 0dd1c81 commit 5f11f03
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions openhtf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import signal
import typing

from openhtf import plugs
from openhtf.core import phase_executor
from openhtf.core import test_record
import openhtf.core.base_plugs
Expand All @@ -29,6 +28,7 @@
import openhtf.core.phase_group
import openhtf.core.phase_nodes
import openhtf.core.test_descriptor
import openhtf.plugs
import openhtf.util
from openhtf.util import configuration
from openhtf.util import console_output
Expand Down Expand Up @@ -86,7 +86,8 @@
'conf',
)

plug = plugs.plug
plugs = openhtf.plugs
plug = openhtf.plugs.plug
BasePlug = openhtf.core.base_plugs.BasePlug

DiagnosesStore = openhtf.core.diagnoses_lib.DiagnosesStore
Expand Down

0 comments on commit 5f11f03

Please sign in to comment.