Skip to content

Commit 839cd82

Browse files
committed
Python: Fix formatting
1 parent 5efc06d commit 839cd82

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/ql/src/experimental/dataflow/internal/DataFlowPublic.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,7 @@ class GuardNode extends ControlFlowNode {
158158
GuardNode() { this = conditionBlock.getLastNode() }
159159

160160
/** Holds if this guard controls block `b` upon evaluating to `branch`. */
161-
predicate controlsBlock(BasicBlock b, boolean branch) {
162-
conditionBlock.controls(b, branch)
163-
}
161+
predicate controlsBlock(BasicBlock b, boolean branch) { conditionBlock.controls(b, branch) }
164162
}
165163

166164
/**

0 commit comments

Comments
 (0)