Skip to content

Commit 4eabd8f

Browse files
committed
Lint fix
1 parent 36c0359 commit 4eabd8f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/python/ir/test_transform_replace_global_var.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ def relax_main(A: R.Tensor([16], "float32")) -> R.Tensor([16], "float32"):
140140
return D
141141

142142
@R.function(private=True)
143-
def relax_subroutine_with_new_name(A: R.Tensor([16], "float32")) -> R.Tensor(
144-
[16], "float32"
145-
):
143+
def relax_subroutine_with_new_name(
144+
A: R.Tensor([16], "float32"),
145+
) -> R.Tensor([16], "float32"):
146146
B = R.add(A, R.prim_value(T.float32(1.0)))
147147
return B
148148

@@ -282,9 +282,9 @@ def relax_main_with_new_name(A: R.Tensor([16], "float32")) -> R.Tensor([16], "fl
282282
return D
283283

284284
@R.function(private=True)
285-
def relax_subroutine_with_new_name(A: R.Tensor([16], "float32")) -> R.Tensor(
286-
[16], "float32"
287-
):
285+
def relax_subroutine_with_new_name(
286+
A: R.Tensor([16], "float32"),
287+
) -> R.Tensor([16], "float32"):
288288
B = R.add(A, R.prim_value(T.float32(1.0)))
289289
return B
290290

0 commit comments

Comments
 (0)