mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +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
159 B
Python
7 lines
159 B
Python
# Optimize Imports should not re-create imports statements that are in order
|
|
from module1 import a, b, c
|
|
|
|
from module2 import A, B, C
|
|
|
|
print(A, B, C, a, b, c)
|