Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[fix] str | None type in from_str_or_bytes_to_any #24

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
6 changes: 5 additions & 1 deletion pydantic_redis/_shared/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ def from_str_or_bytes_to_any(value: Any, field_type: Type) -> Any:
"""
if isinstance(value, (bytes, bytearray, memoryview)):
return orjson.loads(value)
elif isinstance(value, str) and field_type != str:
elif (
isinstance(value, str)
and field_type != str
and (str not in typing_get_args(field_type))
):
return orjson.loads(value)
return value

Expand Down