Files
openide/python/testData/optimizeImports/existingParenthesesInCombinedFromImports.py
Mikhail Golubev dcb69ad408 PY-25567 Keep parentheses around re-ordered from imports in optimize imports
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.
2017-10-23 18:58:30 +03:00

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)