Rodja Trappe 1 주 전
부모
커밋
e6f753892f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/search_as_you_type/main.py

+ 1 - 1
examples/search_as_you_type/main.py

@@ -22,7 +22,7 @@ async def search(e: events.ValueChangeEventArguments) -> None:
     response = await running_query
     if response.text == '':
         return
-    with results:  # enter the context of the the results row
+    with results:  # enter the context of the results row
         for drink in response.json()['drinks'] or []:  # iterate over the response data of the api
             with ui.image(drink['strDrinkThumb']).classes('w-64'):
                 ui.label(drink['strDrink']).classes('absolute-bottom text-subtitle2 text-center')