File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/ql/src/semmle/python/frameworks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1705,15 +1705,15 @@ private module Django {
1705
1705
/** Gets a reference to the `as_view` classmethod of this class. */
1706
1706
DataFlow:: Node asViewRef ( ) { result = this .asViewRef ( DataFlow:: TypeTracker:: end ( ) ) }
1707
1707
1708
- /** Gets a reference to a the result of calling the `as_view` classmethod of this class. */
1708
+ /** Gets a reference to the result of calling the `as_view` classmethod of this class. */
1709
1709
private DataFlow:: Node asViewResult ( DataFlow:: TypeTracker t ) {
1710
1710
t .start ( ) and
1711
1711
result .asCfgNode ( ) .( CallNode ) .getFunction ( ) = this .asViewRef ( ) .asCfgNode ( )
1712
1712
or
1713
1713
exists ( DataFlow:: TypeTracker t2 | result = asViewResult ( t2 ) .track ( t2 , t ) )
1714
1714
}
1715
1715
1716
- /** Gets a reference to a the result of calling the `as_view` classmethod of this class. */
1716
+ /** Gets a reference to the result of calling the `as_view` classmethod of this class. */
1717
1717
DataFlow:: Node asViewResult ( ) { result = asViewResult ( DataFlow:: TypeTracker:: end ( ) ) }
1718
1718
}
1719
1719
You can’t perform that action at this time.
0 commit comments