From e09c5b7806544c25180ac450373ce89a368ae0ec Mon Sep 17 00:00:00 2001 From: driazati Date: Wed, 30 Mar 2022 12:17:17 -0700 Subject: [PATCH] [skip ci][hotfix] Fix broken lint --- python/tvm/relay/frontend/pytorch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tvm/relay/frontend/pytorch.py b/python/tvm/relay/frontend/pytorch.py index a5411ce4d0b6..361b4f86c038 100644 --- a/python/tvm/relay/frontend/pytorch.py +++ b/python/tvm/relay/frontend/pytorch.py @@ -2044,7 +2044,7 @@ def sub(self, inputs, input_types): data0, data1, alpha = self.pytorch_promote_types(inputs, input_types) return get_relay_op("subtract")(data0, alpha * data1) else: - data0, data1= self.pytorch_promote_types(inputs, input_types) + data0, data1 = self.pytorch_promote_types(inputs, input_types) return get_relay_op("subtract")(data0, data1) def rsub(self, inputs, input_types):