mirror of
https://github.com/github/codeql.git
synced 2025-12-24 20:56:33 +01:00
14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
/**
|
|
* @name Extracted Python files
|
|
* @description Lists all Python files in the source code directory that were extracted.
|
|
* @kind diagnostic
|
|
* @id py/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import python
|
|
|
|
from File file
|
|
where exists(file.getRelativePath())
|
|
select file, ""
|