mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
It doesn't affect new imports received as a result of joining several existing ones sharing the same source. For them user must explicitly set preferred type of formatting in code style settings.
5 lines
103 B
Python
5 lines
103 B
Python
from mod1 import a1, b1, c1, d1
|
|
from mod2 import a2, b2, c2, d2
|
|
|
|
print(a1, a2, b1, b2, c1, c2, d1, d2)
|