Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commands: import importlib.util explicitly
Python environments usually do not import importlib.util unless asked to do so specifically: >>> import importlib >>> importlib.util Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'importlib' has no attribute 'util' Therefore it would be better to import importlib.util explicitly. Some commands (e.g. west zephyr-export) do not work on my setup without that change. Signed-off-by: Ilya Tagunov <[email protected]>
- Loading branch information