pylint-errors

W0614 (unused-wildcard-import)

:x: Problematic code:

from pkg import *
print('imported')

:heavy_check_mark: Correct code:

from pkg import *
print('imported', func)

Rationale:

Used when an imported module or variable is not used from a 'from X import *' style import.