Unify use of single quotes for non-docstring string literals
This commit is contained in:
parent
78b9533e2b
commit
00f47f99a9
1 changed files with 4 additions and 4 deletions
|
@ -48,10 +48,10 @@ async def handler(request):
|
|||
|
||||
room_id = str(request.rel_url)[1:]
|
||||
content = {
|
||||
"msgtype": "m.text",
|
||||
"body": data['text'],
|
||||
"format": "org.matrix.custom.html",
|
||||
"formatted_body": markdown(data['text'], extensions=['extra']),
|
||||
'msgtype': 'm.text',
|
||||
'body': data['text'],
|
||||
'format': 'org.matrix.custom.html',
|
||||
'formatted_body': markdown(data['text'], extensions=['extra']),
|
||||
}
|
||||
try:
|
||||
await send_room_message(room_id, content)
|
||||
|
|
Loading…
Reference in a new issue