Replaces
import module_name
with
from module_name import
and drop qualifiers at references to names from
module_name
.
Using
from module_name import
ensures better control over which items of a
module_name
can be accessed.