Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
d-smirnov committed Jul 23, 2020
1 parent da2680b commit 46cb46a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/tvm/relay/frontend/tflite.py
Original file line number Diff line number Diff line change
Expand Up @@ -2731,7 +2731,8 @@ def convert_quantize(self, op):
in_expr = self.get_expr(input_tensor.tensor_idx)
else:
in_value = self.get_tensor_value(input_tensor)
in_expr = self.exp_tab.new_const(in_value, dtype=self.get_tensor_type_str(input_tensor.tensor.Type()))
in_expr = self.exp_tab.new_const(in_value, \
dtype=self.get_tensor_type_str(input_tensor.tensor.Type()))

output_tensors = self.get_output_tensors(op)
assert len(output_tensors) == 1, "output tensors length should be 1"
Expand Down

0 comments on commit 46cb46a

Please sign in to comment.