Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat(state): allow binary values in the trame state #23

Closed
wants to merge 1 commit into from
Closed
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
18 changes: 11 additions & 7 deletions trame_server/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,18 @@ def clean_state(state):
str_values = {}
for key in state:
value = clean_value(state[key])
try:
str_value = json.dumps(value)
if isinstance(value, bytes):
cleaned[key] = value
str_values[key] = str_value
except TypeError:
logger.error(
f"Skip state value for '{key}' since its content is not serializable"
)
str_values[key] = value
else:
try:
str_value = json.dumps(value)
cleaned[key] = value
str_values[key] = str_value
except TypeError:
logger.error(
f"Skip state value for '{key}' since its content is not serializable"
)

return cleaned, str_values

Expand Down
Loading