Skip to content

Commit 4409545

Browse files
committed
fix this real quickly
1 parent 5bc3e4e commit 4409545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llparse/pybuilder/loopchecker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def visit(self, node: Node, path: list[Node]):
252252
return
253253

254254
for edge in node.getAllEdges():
255-
if edge.noAdvance:
255+
if not edge.noAdvance:
256256
continue
257257
edgeValue = value
258258
if edge.key is None or isinstance(edge.key, int):

0 commit comments

Comments
 (0)