wildcard-import / W0401#

Message emitted:

Wildcard import %s

Description:

Used when `from module import *` is detected.

Correct code:

# Either import module or
# only import required objects from module.
import abc
from abc import ABC, abstractmethod

Problematic code:

from abc import *  # [wildcard-import]

Created by the imports checker.