scripts: west_commands: runners: Fix mixed-spaces-and-tabs (E101)
Use spaces for indentation. See https://docs.astral.sh/ruff/rules/mixed-spaces-and-tabs/ Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
This commit is contained in:
parent
a48e37608f
commit
ddbba0ef4c
1 changed files with 1 additions and 2 deletions
|
|
@ -102,8 +102,7 @@ class BossacBinaryRunner(ZephyrBinaryRunner):
|
||||||
b = pathlib.Path(self.cfg.build_dir)
|
b = pathlib.Path(self.cfg.build_dir)
|
||||||
edt_pickle = b / 'zephyr' / 'edt.pickle'
|
edt_pickle = b / 'zephyr' / 'edt.pickle'
|
||||||
if not edt_pickle.is_file():
|
if not edt_pickle.is_file():
|
||||||
error_msg = "can't load devicetree; expected to find:" \
|
error_msg = "can't load devicetree; expected to find:" + str(edt_pickle)
|
||||||
+ str(edt_pickle)
|
|
||||||
|
|
||||||
raise RuntimeError(error_msg)
|
raise RuntimeError(error_msg)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue