Files
codeql/python/ql/src/Imports/ImportStarUsed.ql
2020-03-30 11:59:10 +02:00

17 lines
344 B
Plaintext

/**
* @name 'import *' used
* @description Using import * prevents some analysis
* @kind problem
* @tags maintainability
* @problem.severity recommendation
* @sub-severity low
* @deprecated
* @precision medium
* @id py/import-star-used
*/
import python
from ImportStar i
select i, "Using 'from ... import *' pollutes the namespace"