Skip to content

Commit cbaa9eb

Browse files
committed
Fixed bug with 'show image with user.prompt'
One line was over written with a previous merge that stopped user.prompt with images from working.
1 parent c669a9c commit cbaa9eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openhtf/plugs/user_input.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ def _asdict(self) -> Optional[Dict[Text, Any]]:
156156
return {
157157
'id': self._prompt.id,
158158
'message': self._prompt.message,
159-
'text-input': self._prompt.text_input
159+
'text-input': self._prompt.text_input,
160+
'image-url': self._prompt.image_url
160161
}
161162

162163
def tearDown(self) -> None:

0 commit comments

Comments
 (0)