Skip to content

Commit 4621e6d

Browse files
committed
Python: fix QL format
1 parent 88bba46 commit 4621e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/test/experimental/dataflow/coverage/argumentRouting1.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ArgumentRoutingConfig extends DataFlow::Configuration {
1212
exists(AssignmentDefinition def, DataFlowPrivate::DataFlowCall call |
1313
def.getVariable() = node.(DataFlow::EssaNode).getVar() and
1414
def.getValue() = call.getNode() and
15-
call.getNode().(CallNode).getFunction().(NameNode).getId().matches("With\\_%")
15+
call.getNode().(CallNode).getFunction().(NameNode).getId().matches("With\\_%")
1616
) and
1717
node.(DataFlow::EssaNode).getVar().getName().matches("with\\_%")
1818
}

0 commit comments

Comments
 (0)