Files
openide/python/testData/quickFixes/PyAddImportQuickFixTest/alwaysSplitFromImports/main.py
Mikhail Golubev 97977bf50d PY-20100 Update existing "from" imports only when it's allowed by code style
Interestingly, this new code style option affects the text of the auto import
quickfix since the latter reflects whether a symbols will be imported anew or
by extending some existing import.
2018-10-03 17:13:23 +03:00

3 lines
93 B
Python

from mod import foo
print(foo, <error descr="Unresolved reference 'bar'">b<caret>ar</error>)