This rule raises an issue when an imported name is unused.
Importing names and not using them can be a source of confusion and lead to maintainability issues.
Such imports should be removed.
from mymodule import foo, bar, qix # Noncompliant: bar is unused foo() qix()
from mymodule import foo, qix foo() qix()