mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-04-09 11:25:40 +00:00
Unify use of single quotes for non-docstring string literals
This commit is contained in:
@@ -48,10 +48,10 @@ async def handler(request):
|
|||||||
|
|
||||||
room_id = str(request.rel_url)[1:]
|
room_id = str(request.rel_url)[1:]
|
||||||
content = {
|
content = {
|
||||||
"msgtype": "m.text",
|
'msgtype': 'm.text',
|
||||||
"body": data['text'],
|
'body': data['text'],
|
||||||
"format": "org.matrix.custom.html",
|
'format': 'org.matrix.custom.html',
|
||||||
"formatted_body": markdown(data['text'], extensions=['extra']),
|
'formatted_body': markdown(data['text'], extensions=['extra']),
|
||||||
}
|
}
|
||||||
try:
|
try:
|
||||||
await send_room_message(room_id, content)
|
await send_room_message(room_id, content)
|
||||||
|
|||||||
Reference in New Issue
Block a user