Falko Schindler před 2 roky
rodič
revize
a8dc0abe50
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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