reimported / W0404#

Message emitted:

Reimport %r (imported line %s)

Description:

Used when a module is reimported multiple times.

Problematic code:

import re
import re  # [reimported]

Correct code:

import re

Created by the imports checker.