Indentation levels with paranthesis

pycharm formats:

if (
a
and (
b
)
):
something()

as

if (
a
and (
b
)
):
something(

I have both indent and continuation indent set to 4 spaces. Anyone knows what setting if any would format it as the first snippet?

0

请先登录再写评论。