diff --git a/onnxscript/backend/onnx_export.py b/onnxscript/backend/onnx_export.py index 47720951e..c8a6a9a64 100644 --- a/onnxscript/backend/onnx_export.py +++ b/onnxscript/backend/onnx_export.py @@ -389,6 +389,7 @@ def _translate_attributes(self, node): text += f", offset={metadata.offset!r}" if metadata.length: text += f", length={metadata.length!r}" + text += ")" attributes.append((at.name, text)) continue attributes.append((at.name, repr(value)))