Skip to content

Commit 7d3071e

Browse files
actually fix conflicts
1 parent fc58c38 commit 7d3071e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

reflex/vars.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import random
88
import re
99
import string
10+
from collections.abc import Callable
1011
from typing import (
1112
TYPE_CHECKING,
1213
Any,
@@ -32,7 +33,7 @@
3233
ParsedImportDict,
3334
parse_imports,
3435
)
35-
from reflex.utils.types import Self, get_origin, override
36+
from reflex.utils.types import Self, override
3637

3738
if TYPE_CHECKING:
3839
from reflex.ivars import ImmutableVar
@@ -502,6 +503,9 @@ def get_uuid_string_var() -> ImmutableVar:
502503
)
503504

504505

506+
VAR_CALLABLE = Callable[[Any], Var]
507+
508+
505509
class HybridProperty(property):
506510
"""A hybrid property that can also be used in frontend/as var."""
507511

0 commit comments

Comments
 (0)