File tree Expand file tree Collapse file tree
python/ql/src/semmle/python/frameworks Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1705,15 +1705,15 @@ private module Django {
17051705 /** Gets a reference to the `as_view` classmethod of this class. */
17061706 DataFlow:: Node asViewRef ( ) { result = this .asViewRef ( DataFlow:: TypeTracker:: end ( ) ) }
17071707
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. */
17091709 private DataFlow:: Node asViewResult ( DataFlow:: TypeTracker t ) {
17101710 t .start ( ) and
17111711 result .asCfgNode ( ) .( CallNode ) .getFunction ( ) = this .asViewRef ( ) .asCfgNode ( )
17121712 or
17131713 exists ( DataFlow:: TypeTracker t2 | result = asViewResult ( t2 ) .track ( t2 , t ) )
17141714 }
17151715
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. */
17171717 DataFlow:: Node asViewResult ( ) { result = asViewResult ( DataFlow:: TypeTracker:: end ( ) ) }
17181718 }
17191719
You can’t perform that action at this time.
0 commit comments