瀏覽代碼

#882 code review

Falko Schindler 2 年之前
父節點
當前提交
a8dc0abe50
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/chat_app/main.py

+ 1 - 1
examples/chat_app/main.py

@@ -4,7 +4,7 @@ from typing import List, Tuple
 
 from nicegui import Client, ui
 
-messages: List[Tuple[str, str]] = []
+messages: List[Tuple[str, str, str]] = []
 
 
 @ui.refreshable