Przeglądaj źródła

fixed type annotation

Rodja Trappe 2 lat temu
rodzic
commit
f105257013
1 zmienionych plików z 1 dodań i 1 usunięć
  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