Skip to content

Commit 3634922

Browse files
committed
Python: Fix casing of XMLDomParsing
1 parent f22bd03 commit 3634922

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3591,8 +3591,8 @@ private module StdlibPrivate {
35913591
* - https://docs.python.org/3/library/xml.dom.minidom.html#xml.dom.minidom.parse
35923592
* - https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.parse
35933593
*/
3594-
private class XMLDomParsing extends DataFlow::CallCfgNode, XML::XmlParsing::Range {
3595-
XMLDomParsing() {
3594+
private class XmlDomParsing extends DataFlow::CallCfgNode, XML::XmlParsing::Range {
3595+
XmlDomParsing() {
35963596
this =
35973597
API::moduleImport("xml")
35983598
.getMember("dom")
@@ -3636,8 +3636,8 @@ private module StdlibPrivate {
36363636
* - https://docs.python.org/3/library/xml.dom.minidom.html#xml.dom.minidom.parse
36373637
* - https://docs.python.org/3/library/xml.dom.pulldom.html#xml.dom.pulldom.parse
36383638
*/
3639-
private class FileAccessFromXMLDomParsing extends XMLDomParsing, FileSystemAccess::Range {
3640-
FileAccessFromXMLDomParsing() {
3639+
private class FileAccessFromXmlDomParsing extends XmlDomParsing, FileSystemAccess::Range {
3640+
FileAccessFromXmlDomParsing() {
36413641
this =
36423642
API::moduleImport("xml")
36433643
.getMember("dom")

0 commit comments

Comments
 (0)