Skip to content

Commit

Permalink
scripts: west_commands: Fix MissingProgram import
Browse files Browse the repository at this point in the history
MissingProgram should be exported in __all__.

Signed-off-by: Pieter De Gendt <[email protected]>
  • Loading branch information
pdgendt authored and kartben committed Nov 23, 2024
1 parent 3d6dde4 commit 86a8dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/west_commands/runners/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import importlib
import logging

from runners.core import ZephyrBinaryRunner
from runners.core import MissingProgram, ZephyrBinaryRunner

_logger = logging.getLogger('runners')

Expand Down Expand Up @@ -75,4 +75,4 @@ def get_runner_cls(runner):
return cls
raise ValueError(f'unknown runner "{runner}"')

__all__ = ['ZephyrBinaryRunner', 'get_runner_cls']
__all__ = ['ZephyrBinaryRunner', 'MissingProgram', 'get_runner_cls']

0 comments on commit 86a8dac

Please sign in to comment.