mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
13 lines
270 B
Plaintext
13 lines
270 B
Plaintext
/**
|
|
* @name Branch
|
|
* @description Insert description here...
|
|
* @kind table
|
|
* @problem.severity warning
|
|
*/
|
|
|
|
import python
|
|
|
|
from ControlFlowNode f
|
|
where f.isBranch() and f.getLocation().getFile().getShortName() = "boolops.py"
|
|
select f.getLocation().getStartLine(), f
|