File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
python/ql/src/semmle/python Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ private import semmle.python.frameworks.Flask
99private import semmle.python.frameworks.Invoke
1010private import semmle.python.frameworks.MySQLdb
1111private import semmle.python.frameworks.MysqlConnectorPython
12- private import semmle.python.frameworks.Psycopg
12+ private import semmle.python.frameworks.Psycopg2
1313private import semmle.python.frameworks.Stdlib
1414private import semmle.python.frameworks.Yaml
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ private import PEP249
1717 * - https://www.psycopg.org/docs/
1818 * - https://pypi.org/project/psycopg2/
1919 */
20- module Psycopg {
20+ module Psycopg2 {
2121 // ---------------------------------------------------------------------------
2222 // Psycopg
2323 // ---------------------------------------------------------------------------
@@ -33,7 +33,7 @@ module Psycopg {
3333 DataFlow:: Node psycopg2 ( ) { result = psycopg2 ( DataFlow:: TypeTracker:: end ( ) ) }
3434
3535 /** psycopg2 implements PEP 249, providing ways to execute SQL statements against a database. */
36- class Psycopg extends PEP249Module {
37- Psycopg ( ) { this = psycopg2 ( ) }
36+ class Psycopg2 extends PEP249Module {
37+ Psycopg2 ( ) { this = psycopg2 ( ) }
3838 }
3939}
You can’t perform that action at this time.
0 commit comments