Python: Fix formatting

This commit is contained in:
Rasmus Lerchedahl Petersen
2020-09-14 18:48:55 +02:00
parent 5efc06da2c
commit 839cd829ce

View File

@@ -158,9 +158,7 @@ class GuardNode extends ControlFlowNode {
GuardNode() { this = conditionBlock.getLastNode() }
/** Holds if this guard controls block `b` upon evaluating to `branch`. */
predicate controlsBlock(BasicBlock b, boolean branch) {
conditionBlock.controls(b, branch)
}
predicate controlsBlock(BasicBlock b, boolean branch) { conditionBlock.controls(b, branch) }
}
/**