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:]
|
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)
|
||||||
|
|
Loading…
Reference in a new issue