Преглед на файлове

Fix py3.8 integration test_var_operations.py (#2858)

A newly added test was not py3.8 compatible and is breaking CI runs
Masen Furer преди 1 година
родител
ревизия
e3db9adc70
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      integration/test_var_operations.py

+ 1 - 1
integration/test_var_operations.py

@@ -35,7 +35,7 @@ def VarOperations():
     app = rx.App(state=rx.State)
 
     @rx.memo
-    def memo_comp(list1: list[int], int_var1: int, id: str):
+    def memo_comp(list1: List[int], int_var1: int, id: str):
         return rx.text(list1, int_var1, id=id)
 
     @rx.memo