Explorar o código

fixed type annotation

Rodja Trappe %!s(int64=2) %!d(string=hai) anos
pai
achega
f105257013
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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