Skip to content

Commit 649f7e4

Browse files
committed
Fix lint error
1 parent 8b112fb commit 649f7e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

linebot/app/services/handlers/text_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def handle_text_message(event):
2727
quick_reply = None
2828
if user_input in COMMANDS:
2929
response_text = COMMANDS[user_input]
30-
if isinstance(response_text, list): # 處理 /hint 指令的多個提示
30+
if isinstance(response_text, list): # 處理 /hint 指令的多個提示
3131
response_text = random.choice(response_text)
3232
quick_reply = create_quick_reply()
3333
return [TextSendMessage(text=response_text, quick_reply=quick_reply)]

0 commit comments

Comments
 (0)