Skip to content

Commit

Permalink
pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Valery Chernov committed Jan 18, 2023
1 parent 6d0e8d5 commit 441626b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/tvm/relay/op/strategy/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,9 @@ def wrap_compute_bernoulli(topi_compute):
"""Wrap bernoulli topi compute"""

def _compute_bernoulli(attrs, inputs, _):
return list(topi_compute(inputs[0], inputs[1], attrs.out_shape, attrs.dis_dtype, attrs.out_dtype))
return list(
topi_compute(inputs[0], inputs[1], attrs.out_shape, attrs.dis_dtype, attrs.out_dtype)
)

return _compute_bernoulli

Expand Down

0 comments on commit 441626b

Please sign in to comment.