Skip to content

Commit

Permalink
fix stringification issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Domiii committed Dec 8, 2024
1 parent 5b718e0 commit 755c218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands/events/replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def handle_replay_enhance_observation(
) -> bool:
enhance_action_id = state.extra_data.get('replay_enhance_prompt_id')
if enhance_action_id is not None:
assert enhance_action_id, f'handle_replay_enhance_observation with replay_enhance_prompt_id={enhance_action_id}'
assert enhance_action_id, f'handle_replay_enhance_observation with replay_enhance_prompt_id={repr(enhance_action_id)}'
user_message: MessageAction | None = next(
(
m
Expand Down

0 comments on commit 755c218

Please sign in to comment.