Skip to content

Commit c53842d

Browse files
authored
Merge pull request #57 from ginping/fix_f_string_error
🐛 fix: 修复字符串模板语法问题 0.24.2
2 parents d56b818 + 735f467 commit c53842d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dingtalk_stream/stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def start(self):
7070
continue
7171
self.logger.info('endpoint is %s', connection)
7272

73-
uri = f"{connection["endpoint"]}?ticket={quote_plus(connection["ticket"])}"
73+
uri = f'{connection["endpoint"]}?ticket={quote_plus(connection["ticket"])}'
7474
async with websockets.connect(uri) as websocket:
7575
self.websocket = websocket
7676
asyncio.create_task(self.keepalive(websocket))

dingtalk_stream/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION_STRING = '0.24.1'
1+
VERSION_STRING = '0.24.2'

0 commit comments

Comments
 (0)