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.
1 parent 3d6dde4 commit 86a8dacCopy full SHA for 86a8dac
scripts/west_commands/runners/__init__.py
@@ -5,7 +5,7 @@
5
import importlib
6
import logging
7
8
-from runners.core import ZephyrBinaryRunner
+from runners.core import MissingProgram, ZephyrBinaryRunner
9
10
_logger = logging.getLogger('runners')
11
@@ -75,4 +75,4 @@ def get_runner_cls(runner):
75
return cls
76
raise ValueError(f'unknown runner "{runner}"')
77
78
-__all__ = ['ZephyrBinaryRunner', 'get_runner_cls']
+__all__ = ['ZephyrBinaryRunner', 'MissingProgram', 'get_runner_cls']
0 commit comments