diff --git a/python/ql/lib/semmle/python/security/dataflow/ReflectedXSSCustomizations.qll b/python/ql/lib/semmle/python/security/dataflow/ReflectedXSSCustomizations.qll index 31e21fd76fb..3d148909b5b 100644 --- a/python/ql/lib/semmle/python/security/dataflow/ReflectedXSSCustomizations.qll +++ b/python/ql/lib/semmle/python/security/dataflow/ReflectedXSSCustomizations.qll @@ -48,7 +48,9 @@ module ReflectedXss { * A data flow sink for "reflected cross-site scripting" vulnerabilities. */ private class DefaultReflectedXss extends Sink { - DefaultReflectedXss() { this = ModelOutput::getASourceNode(["html-injection", "js-injection"]).asSource() } + DefaultReflectedXss() { + this = ModelOutput::getASourceNode(["html-injection", "js-injection"]).asSource() + } } /**