From e3db9adc70ca398423ae87589c5051283911e877 Mon Sep 17 00:00:00 2001
From: Masen Furer <m_github@0x26.net>
Date: Wed, 13 Mar 2024 17:45:27 -0700
Subject: [PATCH] Fix py3.8 integration test_var_operations.py (#2858)

A newly added test was not py3.8 compatible and is breaking CI runs
---
 integration/test_var_operations.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration/test_var_operations.py b/integration/test_var_operations.py
index 03bb31d6b..14378e4d9 100644
--- a/integration/test_var_operations.py
+++ b/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