mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +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.
16 lines
164 B
Python
16 lines
164 B
Python
from mod1 import (
|
|
a1,
|
|
b1
|
|
)
|
|
|
|
from mod1 import c1, d1
|
|
|
|
from mod2 import (
|
|
a2,
|
|
b2
|
|
)
|
|
|
|
from mod2 import (c2, d2)
|
|
|
|
print(a1, a2, b1, b2, c1, c2, d1, d2)
|