Py: Report any extracted file as successfully extracted

This commit is contained in:
Sid Shankar
2024-01-08 22:20:51 +00:00
parent e30a0d1e83
commit fb660b8f05
2 changed files with 5 additions and 6 deletions

View File

@@ -1,7 +1,6 @@
/**
* @name Successfully extracted Python files
* @description Lists all Python files in the source code directory that were extracted
* without encountering an error.
* @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
@@ -10,7 +9,5 @@
import python
from File file
where
not exists(SyntaxError e | e.getFile() = file) and
exists(file.getRelativePath())
where exists(file.getRelativePath())
select file, ""