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 8a1c323 commit e666592Copy full SHA for e666592
python/ql/lib/semmle/python/frameworks/Pandas.qll
@@ -158,7 +158,9 @@ private module Pandas {
158
* See https://pandas.pydata.org/docs/reference/api/pandas.read_sql.html
159
*/
160
class ReadSqlCall extends SqlExecution::Range, DataFlow::CallCfgNode {
161
- ReadSqlCall() { this = API::moduleImport("pandas").getMember(["read_sql", "read_sql_query"]).getACall() }
+ ReadSqlCall() {
162
+ this = API::moduleImport("pandas").getMember(["read_sql", "read_sql_query"]).getACall()
163
+ }
164
165
override DataFlow::Node getSql() { result in [this.getArg(0), this.getArgByName("sql")] }
166
}
0 commit comments