mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
For instance, "from" import statements where imported names are already ordered. Otherwise even when all imports are well formed, the whole import block will be inserted anew and reformatted.
7 lines
131 B
Python
7 lines
131 B
Python
# Optimize imports should not reformat unaffected statements
|
|
from module1 import a, b
|
|
|
|
from module2 import A, B
|
|
|
|
print(A, B, a, b)
|