提交 a180b88e authored 作者: Ricardo Vieira's avatar Ricardo Vieira 提交者: Thomas Wiecki

Fix typo in error message

上级 47478e69
......@@ -355,7 +355,7 @@ class OpFromGraph(Op, HasInnerGraph):
var_counts = {var: inputs.count(var) for var in inputs}
duplicated_inputs = [var for var, count in var_counts.items() if count > 1]
raise ValueError(
f"There following variables were provided more than once as inputs to the OpFromGraph, resulting in an "
f"The following variables were provided more than once as inputs to the OpFromGraph, resulting in an "
f"invalid graph: {duplicated_inputs}. Use dummy variables or var.copy() to distinguish "
f"variables when creating the OpFromGraph graph."
)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论