We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af7bea2 commit fe40900Copy full SHA for fe40900
scripts/codegen.py
@@ -54,6 +54,11 @@
54
)
55
async_source = re.sub(r"ChatStream:", "AsyncChatStream:", async_source)
56
async_source = re.sub(r"ChatStream\(", "AsyncChatStream(", async_source)
57
+ async_source = re.sub(
58
+ r" client.chat_stream\(",
59
+ " await client.chat_stream(",
60
+ async_source,
61
+ )
62
async_source = re.sub(
63
r" streamer.append\(",
64
" await streamer.append(",
slack_sdk/web/async_client.py
@@ -2939,7 +2939,7 @@ async def chat_stream(
2939
2940
Example:
2941
```python
2942
- streamer = client.chat_stream(
+ streamer = await client.chat_stream(
2943
channel="C0123456789",
2944
thread_ts="1700000001.123456",
2945
recipient_team_id="T0123456789",
0 commit comments