Files
openide/python/python-psi-impl/resources/intentionDescriptions/ImportFromToImportIntention/description.html
Semyon Proshev cb8716794e Update python intentions' descriptions (PY-48274)
GitOrigin-RevId: 2bd596ec3f37c94303661b2aa416970aafc03ab6
2021-04-30 11:55:25 +00:00

13 lines
400 B
HTML

<html>
<body>
<span>
Transforms <code>from module_name import</code> into <code>import module_name</code>
and qualifies any names imported from that module by module name.
</span>
<br/>
<span>
With the <code>import module_name</code> statement, you do not need to update
any <code>from module_name import</code> statement
to start using another item from the same module.</span>
</body>
</html>