Falko Schindler hace 2 años
padre
commit
a8dc0abe50
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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