Skip to content

Commit 8ee90d5

Browse files
committed
chore: make check-fix
1 parent d400e47 commit 8ee90d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shiny/ui/_chat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ async def _send_append_message(
742742
async def append_status_message(
743743
self,
744744
content: str | Tag | HTML,
745-
type: Literal["dynamic", "static"] = "dynamic"
745+
type: Literal["dynamic", "static"] = "dynamic",
746746
) -> None:
747747
"""
748748
Append a status message to the chat.
@@ -763,7 +763,7 @@ async def append_status_message(
763763
msg: ChatStatusMessage = {
764764
"content": str(content),
765765
"content_type": "html" if isinstance(content, (Tag, HTML)) else "text",
766-
"type": type
766+
"type": type,
767767
}
768768
await self._send_custom_message("shiny-chat-append-status-message", msg)
769769

0 commit comments

Comments
 (0)