Skip to content

Commit

Permalink
Fix brackets position in README (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
taikis committed Jul 5, 2023
1 parent 6fb6b75 commit dafa948
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,9 @@ Add a **handler** method by using this decorator.
line_bot_api.reply_message(
ReplyMessageRequest(
reply_token=event.reply_token,
messages=[TextMessage(text=event.message.text))]
messages=[TextMessage(text=event.message.text)]
)
)
When the event is an instance of MessageEvent and event.message is an instance of TextMessage,
this handler method is called.
Expand Down

0 comments on commit dafa948

Please sign in to comment.