Pārlūkot izejas kodu

fixed type annotation

Rodja Trappe 2 gadi atpakaļ
vecāks
revīzija
f105257013
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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