Skip to content

Commit 760e4ab

Browse files
committed
make pylint happy
1 parent 43cdfec commit 760e4ab

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tf2onnx/graph.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,8 @@ def attr_onnx(self):
9090
"""Return onnx valid attributes"""
9191
schema = get_schema(self.type, self.graph.opset, self.domain)
9292
if schema is None and not (self.is_const() or self.is_graph_input()):
93-
log.debug("Node %s uses non-stardard onnx op <%s, %s>, skip attribute check", self.name, self.domain,
94-
self.type)
95-
93+
log.debug("Node %s uses non-stardard onnx op <%s, %s>, skip attribute check",
94+
self.name, self.domain, self.type)
9695
onnx_attrs = {}
9796
for a in self._attr.values():
9897
if schema is None or schema.has_attribute(a.name):

0 commit comments

Comments
 (0)