This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Description
This code results in an error.
from slacker import Slacker
slack = Slacker("token")
blocks = [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Start <https://google.com|Show> | <https://google.com|Cancel>"
}
},
]
slack.chat.post_message('#channnel-name', blocks=blocks)
Upon investigation, the block is not json-encoded.
Is it OK to send the modified PR?