We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23612d9 commit 69f0b31Copy full SHA for 69f0b31
keymap_drawer/physical_layout.py
@@ -285,7 +285,9 @@ def generate(self) -> PhysicalLayout:
285
config=self.config, **_map_zmk_layout(self.zmk_keyboard, self.layout_name)
286
).generate()
287
except ValueError as exc:
288
- raise ValueError('A physical layout for zmk_keyboard "{self.zmk_keyboard}" could not be found') from exc
+ raise ValueError(
289
+ f'A physical layout for zmk_keyboard "{self.zmk_keyboard}" could not be found'
290
+ ) from exc
291
292
if self.zmk_shared_layout is not None:
293
fetched = _get_zmk_shared_layout(self.zmk_shared_layout, draw_cfg.use_local_cache)
0 commit comments