no-name-in-module / E0611#

Message emitted:

No name %r in module %r

Description:

Used when a name cannot be found in a module.

Correct code:

from os import path

Problematic code:

from os import pizza  # [no-name-in-module]

Created by the variables checker.