ソースを参照

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
 from nicegui import Client, ui
 
 
-messages: List[Tuple[str, str, str]] = []
+messages: List[Tuple[str, str, str, str]] = []
 
 
 
 
 @ui.refreshable
 @ui.refreshable