Skip to content

Commit 8a1c323

Browse files
Change naming to PascalCase
1 parent 55c70a4 commit 8a1c323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/ql/lib/semmle/python/frameworks/Pandas.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ private module Pandas {
157157
* which allows for executing raw SQL queries against a database.
158158
* See https://pandas.pydata.org/docs/reference/api/pandas.read_sql.html
159159
*/
160-
class ReadSQLCall extends SqlExecution::Range, DataFlow::CallCfgNode {
161-
ReadSQLCall() { this = API::moduleImport("pandas").getMember(["read_sql", "read_sql_query"]).getACall() }
160+
class ReadSqlCall extends SqlExecution::Range, DataFlow::CallCfgNode {
161+
ReadSqlCall() { this = API::moduleImport("pandas").getMember(["read_sql", "read_sql_query"]).getACall() }
162162

163163
override DataFlow::Node getSql() { result in [this.getArg(0), this.getArgByName("sql")] }
164164
}

0 commit comments

Comments
 (0)