瀏覽代碼

fixed type annotation

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

+ 1 - 1
examples/chat_app/main.py

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