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
4 changes: 2 additions & 2 deletions flag_engine/identities/traits/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
_UnconstrainedTraitValue = Union[None, int, float, bool, str]


def _map_any_value_to_trait_value(value: Any) -> _UnconstrainedTraitValue:
def map_any_value_to_trait_value(value: Any) -> _UnconstrainedTraitValue:
"""
Try to coerce a value of arbitrary type to a trait value type.
Union member-specific constraints, such as max string value length, are ignored here.
Expand Down Expand Up @@ -56,5 +56,5 @@ def _is_trait_value(value: Any) -> TypeGuard[_UnconstrainedTraitValue]:
int,
Annotated[str, StringConstraints(max_length=TRAIT_STRING_VALUE_MAX_LENGTH)],
],
BeforeValidator(_map_any_value_to_trait_value),
BeforeValidator(map_any_value_to_trait_value),
]