We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de63bbc commit c527264Copy full SHA for c527264
python/ql/lib/semmle/python/frameworks/Aiopg.qll
@@ -98,10 +98,10 @@ private module Aiopg {
98
* See https://aiopg.readthedocs.io/en/stable/sa.html#aiopg.sa.SAConnection.execute
99
*/
100
class AwaitedSAConnectionExecuteCall extends SqlExecution::Range {
101
- SAConnectionExecuteCall excute;
+ SAConnectionExecuteCall execute;
102
103
- AwaitedSAConnectionExecuteCall() { this = excute.getReturn().getAwaited().asSource() }
+ AwaitedSAConnectionExecuteCall() { this = execute.getReturn().getAwaited().asSource() }
104
105
- override DataFlow::Node getSql() { result = excute.getSql() }
+ override DataFlow::Node getSql() { result = execute.getSql() }
106
}
107
0 commit comments