W1002 Warnings

unused-import

module imported but not used

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, remove the import, or suppress with `@Suppress(W1002)`.

Related errors