Skip to content

Commit 6b61f1c

Browse files
committed
mypy
1 parent 2f0b482 commit 6b61f1c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

onnx_diagnostic/helpers/rt_helper.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,10 @@ def make_feeds(
9999
new_flat.append(flat[pos])
100100
pos += 1
101101
assert len(new_flat) == len(names), (
102-
f"Unable to align expected input {names} with the given input"
102+
f"Unable to align expected input {names} with the given input, "
103+
f"type(proto)={type(proto)}"
103104
f"\n-- inputs: {string_type(inputs, with_shape=True)}"
104-
f"\n-- model: {string_type(proto.graph.input)}"
105+
f"\n-- typed_names: {typed_names}"
105106
)
106107
flat = new_flat
107108

0 commit comments

Comments
 (0)