Skip to content

Commit 86a8dac

Browse files
pdgendtkartben
authored andcommitted
scripts: west_commands: Fix MissingProgram import
MissingProgram should be exported in __all__. Signed-off-by: Pieter De Gendt <[email protected]>
1 parent 3d6dde4 commit 86a8dac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/west_commands/runners/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import importlib
66
import logging
77

8-
from runners.core import ZephyrBinaryRunner
8+
from runners.core import MissingProgram, ZephyrBinaryRunner
99

1010
_logger = logging.getLogger('runners')
1111

@@ -75,4 +75,4 @@ def get_runner_cls(runner):
7575
return cls
7676
raise ValueError(f'unknown runner "{runner}"')
7777

78-
__all__ = ['ZephyrBinaryRunner', 'get_runner_cls']
78+
__all__ = ['ZephyrBinaryRunner', 'MissingProgram', 'get_runner_cls']

0 commit comments

Comments
 (0)