如何在 PyCharm 中为函数参数设置制表符缩进? [重复]

问题描述 投票:0回答:1

代替双缩进 用于函数参数

def foo(
        name
):
    print('hello ' + name)

我想使用单缩进:

def foo(
    name
):
    print('hello ' + name)

=> 如何告诉 PyCharm 对函数参数使用单缩进?

不幸的是,下

Settings => Editor => Code Style => Python => Tabs and Indents 

似乎没有额外的选项:

作为替代方案:对参数使用额外缩进的合理性是什么?

python pycharm styling
1个回答
0
投票

捂脸 ...它是“继续缩进”选项。

© www.soinside.com 2019 - 2024. All rights reserved.