W1002 Cleanup Warnings

Cleanup

this import is never used; remove it or use a function from the module

When this occurs

Import statement for unused module

Example error message

warning[W1002]: module 'math' is imported but never used

How to fix

Use the imported module or remove the import.

Related errors