Skip to content

Commit ce0b596

Browse files
committed
fix: optional markdown_text for append
1 parent 240a40e commit ce0b596

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

slack_sdk/web/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2625,7 +2625,7 @@ async def chat_appendStream(
26252625
*,
26262626
channel: str,
26272627
ts: str,
2628-
markdown_text: Optional[str],
2628+
markdown_text: Optional[str] = None,
26292629
**kwargs,
26302630
) -> AsyncSlackResponse:
26312631
"""Appends text to an existing streaming conversation.

slack_sdk/web/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2615,7 +2615,7 @@ def chat_appendStream(
26152615
*,
26162616
channel: str,
26172617
ts: str,
2618-
markdown_text: Optional[str],
2618+
markdown_text: Optional[str] = None,
26192619
**kwargs,
26202620
) -> SlackResponse:
26212621
"""Appends text to an existing streaming conversation.

slack_sdk/web/legacy_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2627,7 +2627,7 @@ def chat_appendStream(
26272627
*,
26282628
channel: str,
26292629
ts: str,
2630-
markdown_text: Optional[str],
2630+
markdown_text: Optional[str] = None,
26312631
**kwargs,
26322632
) -> Union[Future, SlackResponse]:
26332633
"""Appends text to an existing streaming conversation.

0 commit comments

Comments
 (0)