Skip to content

Commit b4be4df

Browse files
committed
fix
1 parent 604527b commit b4be4df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnx_diagnostic/export/onnx_plug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def __init__(
154154
self.function_proto = function_proto
155155
self.n_inputs = n_inputs
156156
self.n_outputs = n_outputs
157-
self.name = name or eager_fn.__qualname__.replace("<local>", "L").replace(
157+
self.name = name or eager_fn.__qualname__.replace("<locals>", "L").replace(
158158
"<lambda>", "l"
159159
).replace(".", "_")
160160
self.kwargs = kwargs

0 commit comments

Comments
 (0)