Skip to content

Commit 8e1cd71

Browse files
committed
apply suggestion from the review
1 parent f42a8ee commit 8e1cd71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/agent_rtm_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
chat_id = response.payload.get('chat_id')
1010
thread_id = response.payload.get('thread_id')
1111

12-
# Get all messages including the non-response messages (e.g. pushes). Returns a list
12+
# Get `incoming_chat` push from all messages including the non-response messages (i.e. pushes)
1313
incoming_chat_push = agent_rtm.ws.messages[0]
1414

1515
agent_rtm.send_event(chat_id=chat_id,

examples/customer_rtm_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
chat_id = response.payload.get('chat_id')
1111
thread_id = response.payload.get('thread_id')
1212

13-
# Get all messages including the non-response messages (e.g. pushes). Returns a list
13+
# Get `incoming_chat` push from all messages including the non-response messages (i.e. pushes)
1414
incoming_chat_push = customer_rtm.ws.messages[0]
1515

1616
customer_rtm.send_event(chat_id=chat_id,

0 commit comments

Comments
 (0)