From f9b24fe5bd896bbe271c321d72db22262b446e85 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Tue, 12 Nov 2024 16:38:30 -0800 Subject: [PATCH] get typevar from extensions --- reflex/vars/function.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/reflex/vars/function.py b/reflex/vars/function.py index bc619f18d..c65b38f70 100644 --- a/reflex/vars/function.py +++ b/reflex/vars/function.py @@ -4,19 +4,9 @@ from __future__ import annotations import dataclasses import sys -from typing import ( - Any, - Callable, - Optional, - Sequence, - Tuple, - Type, - TypeVar, - Union, - overload, -) +from typing import Any, Callable, Optional, Sequence, Tuple, Type, Union, overload -from typing_extensions import Concatenate, Generic, ParamSpec, Protocol +from typing_extensions import Concatenate, Generic, ParamSpec, Protocol, TypeVar from reflex.utils import format from reflex.utils.types import GenericType