Skip to content

Commit cba66aa

Browse files
authored
Fix model state ID logging (#818)
1 parent d7a71b3 commit cba66aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/idom/core/layout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async def render(self) -> LayoutUpdate:
136136
except KeyError:
137137
logger.debug(
138138
"Did not render component with model state ID "
139-
"{model_state_id!r} - component already unmounted"
139+
f"{model_state_id!r} - component already unmounted"
140140
)
141141
else:
142142
return self._create_layout_update(model_state)

0 commit comments

Comments
 (0)