mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
Effectively, I've removed "Always" variant of "Force parentheses" option. It doesn't seem that people ever need to wrap one line "from" imports in parentheses, so there is no point in making code style settings more complicated. We can return combo box with "Always" variant later if someone specifically asks for it.
26 lines
522 B
Python
26 lines
522 B
Python
from module import foo
|
|
from module import foo, bar
|
|
from module import foo, bar,
|
|
# | margin
|
|
from module import (foo, bar,
|
|
baz, )
|
|
from module import (foo,
|
|
bar, )
|
|
from module import (foo,
|
|
bar, )
|
|
|
|
from module import (foo,
|
|
bar, # comment
|
|
)
|
|
|
|
from module import (foo,
|
|
bar, )
|
|
|
|
from module import (foo,
|
|
bar, )
|
|
|
|
from module import (
|
|
foo,
|
|
bar, # comment
|
|
)
|