.. _unused-wildcard-import: unused-wildcard-import / W0614 ============================== **Message emitted:** ``Unused import(s) %s from wildcard import of %s`` **Description:** *Used when an imported module or variable is not used from a `'from X import *'` style import.* **Problematic code:** .. literalinclude:: /data/messages/u/unused-wildcard-import/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/u/unused-wildcard-import/good.py :language: python Created by the `variables `__ checker.