Explorar o código

don't use Any from extensions

Khaleel Al-Adhami hai 6 meses
pai
achega
6745d6cb9d
Modificáronse 1 ficheiros con 3 adicións e 6 borrados
  1. 3 6
      reflex/vars/function.py

+ 3 - 6
reflex/vars/function.py

@@ -4,15 +4,10 @@ from __future__ import annotations
 
 import dataclasses
 import sys
-
-from typing_extensions import (
+from typing import (
     Any,
     Callable,
-    Concatenate,
-    Generic,
     Optional,
-    ParamSpec,
-    Protocol,
     Sequence,
     Tuple,
     Type,
@@ -21,6 +16,8 @@ from typing_extensions import (
     overload,
 )
 
+from typing_extensions import Concatenate, Generic, ParamSpec, Protocol
+
 from reflex.utils import format
 from reflex.utils.types import GenericType