Skip to content

Commit 2b50ebe

Browse files
committed
fix lint error
1 parent efe9d51 commit 2b50ebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tvm/relax/frontend/torch/exported_program_translator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def _unflatten(self, node: fx.Node) -> relax.Var:
226226
if dim < 0:
227227
dim += len(x_shape)
228228

229-
new_shape = x_shape[:dim] + sizes + x_shape[dim + 1:]
229+
new_shape = x_shape[:dim] + sizes + x_shape[dim + 1 :]
230230
return self.block_builder.emit(relax.op.reshape(x, new_shape))
231231

232232
########## Creation ##########

0 commit comments

Comments
 (0)