Python logoPython/
PYL-W0614

Unused import from wildcard import foundPYL-W0614

Major severityMajor
Anti-pattern categoryAnti-pattern

In a wildcard import, all public names defined in the module are imported. It is advised to explicitly import the values needed or modify the module being imported from and define all to restrict the names to be imported.