mirror of
https://github.com/github/codeql.git
synced 2026-01-03 01:30:19 +01:00
17 lines
344 B
Plaintext
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"
|