Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions reflex/utils/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys
import types
from collections.abc import Callable, Iterable, Mapping, Sequence
from enum import Enum
from functools import cached_property, lru_cache
from types import GenericAlias
from typing import ( # noqa: UP035
Expand Down Expand Up @@ -1241,6 +1242,7 @@ def get_default_value_for_type(t: GenericType) -> Any:
frozenset,
tuple,
type(None),
Enum,
)


Expand Down
Loading