Skip to content

Commit 9d93b05

Browse files
committed
Black
1 parent 6f0b7cb commit 9d93b05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bloqade/rewrite/passes/aggressive_unroll.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ def __post_init__(self):
7171
def unsafe_run(self, mt: Method) -> RewriteResult:
7272
result = RewriteResult()
7373
result = self.fold.unsafe_run(mt).join(result)
74-
result = Walk(ilist.rewrite.Unroll()).rewrite(mt.code).join(result) # BUG: cduck's use case fails without this line
74+
result = (
75+
Walk(ilist.rewrite.Unroll()).rewrite(mt.code).join(result)
76+
) # BUG: cduck's use case fails without this line
7577
result = self.scf_unroll.unsafe_run(mt).join(result)
7678
self.typeinfer.unsafe_run(
7779
mt

0 commit comments

Comments
 (0)