Skip to content

Commit b011336

Browse files
committed
Format
1 parent 0380561 commit b011336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tf2onnx/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ def make_onnx_graph_io(self, ids):
10691069
utils.make_sure(dtype is not None, "missing output dtype for " + name)
10701070
# TODO: allow None output shape or not? e.g. shape=(?,)
10711071
#utils.make_sure(shape is not None, "missing output shape for " + name)
1072-
if shape is None: logger.warning("missing output shape for " + name)
1072+
if shape is None: logger.warning("missing output shape for %s", name)
10731073

10741074
v = utils.make_onnx_inputs_outputs(name, dtype, shape)
10751075
tensor_value_infos.append(v)

0 commit comments

Comments
 (0)