Skip to content

Commit ffebc54

Browse files
committed
fix for inout information bug
1 parent 09d6dee commit ffebc54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jac-mtllm/mtllm/aott.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def aott_raise(
5656
inputs_information_repr.extend(input_info.to_list_dict())
5757
elif is_custom:
5858
media = [x for x in inputs_information if isinstance(x.value, PILImage.Image)]
59-
inputs_information_repr = ""
59+
inputs_information_repr = "\n".join([str(x) for x in inputs_information])
6060
else:
6161
inputs_information_repr = "\n".join([str(x) for x in inputs_information])
6262

0 commit comments

Comments
 (0)