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:
Pieter De Gendt 2024-11-20 09:11:16 +01:00 committed by Benjamin Cabé
parent a48e37608f
commit ddbba0ef4c

View file

@ -102,8 +102,7 @@ class BossacBinaryRunner(ZephyrBinaryRunner):
b = pathlib.Path(self.cfg.build_dir)
edt_pickle = b / 'zephyr' / 'edt.pickle'
if not edt_pickle.is_file():
error_msg = "can't load devicetree; expected to find:" \
+ str(edt_pickle)
error_msg = "can't load devicetree; expected to find:" + str(edt_pickle)
raise RuntimeError(error_msg)