Skip to content

Commit

Permalink
fix: Convert UUID to str
Browse files Browse the repository at this point in the history
  • Loading branch information
whiterabbit1983 committed Apr 15, 2024
1 parent f2d865a commit e0e7390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents-api/agents_api/models/agent/patch_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def patch_agent_query(
settings_cols, settings_vals = cozo_process_mutate_data(
{
**default_settings,
"agent_id": agent_id,
"agent_id": str(agent_id),
}
)

Expand Down

0 comments on commit e0e7390

Please sign in to comment.