From 8cbe8f0d6afe0fc16415a85009ccbb1c3f609b6a Mon Sep 17 00:00:00 2001 From: yytdfc Date: Fri, 15 Mar 2019 18:02:01 +0800 Subject: [PATCH] fix style --- mace/python/tools/converter_tool/onnx_converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mace/python/tools/converter_tool/onnx_converter.py b/mace/python/tools/converter_tool/onnx_converter.py index fff5241c..d2baae2a 100644 --- a/mace/python/tools/converter_tool/onnx_converter.py +++ b/mace/python/tools/converter_tool/onnx_converter.py @@ -230,7 +230,7 @@ def onnx_dtype(dtype): class OnnxNode(object): def __init__(self, node): self.name = str(node.name) - if self.name=='': + if self.name == '': self.name = str(node.output) self.op_type = str(node.op_type) self.domain = str(node.domain) -- GitLab