Skip to content

Commit d6bee56

Browse files
committed
Squash weird import bug
1 parent 0ec8199 commit d6bee56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/host_tests/host_tests_plugins/module_copy_smart.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from host_test_plugins import HostTestPluginBase
2323

2424
sys.path.append(abspath(join(dirname(__file__), "../../../")))
25-
from tools.test_api import get_autodetected_MUTS_list
25+
import tools.test_api
2626

2727
class HostTestPluginCopyMethod_Smart(HostTestPluginBase):
2828

@@ -74,7 +74,7 @@ def execute(self, capability, *args, **kwargs):
7474

7575
for i in range(0, 60):
7676
print('Looking for %s with MBEDLS' % target_mcu)
77-
muts_list = get_autodetected_MUTS_list(platform_name_filter=platform_name_filter)
77+
muts_list = tools.test_api.get_autodetected_MUTS_list(platform_name_filter=platform_name_filter)
7878

7979
if 1 in muts_list:
8080
mut = muts_list[1]

0 commit comments

Comments
 (0)