no-name-in-module / E0611#

Message emitted:

No name %r in module %r

Description:

Used when a name cannot be found in a module.

Problematic code:

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

Correct code:

from os import path

Created by the variables checker.