Files
codeql/python/ql/src/Imports/EncodingError.ql
2025-06-19 14:07:55 +01:00

18 lines
366 B
Plaintext

/**
* @name Encoding error
* @description Encoding errors cause failures at runtime and prevent analysis of the code.
* @kind problem
* @tags quality
* reliability
* correctness
* @problem.severity error
* @sub-severity low
* @precision high
* @id py/encoding-error
*/
import python
from EncodingError error
select error, error.getMessage()