mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
201 B
Plaintext
14 lines
201 B
Plaintext
/**
|
|
* @id py/examples/elif
|
|
* @name Elif statement
|
|
* @description Finds `elif` sub-statements within `if` statements
|
|
* @tags if
|
|
* else
|
|
*/
|
|
|
|
import python
|
|
|
|
from If i
|
|
where i.isElif()
|
|
select i
|