如何阻止 Black 删除函数调用参数中的新行?

How to stop Black from removing new lines in function call args?

我想记录一个外部函数:

strange_function(
    # Comments about what this argument does
    param_1=True,

    # Comments about what this argument does
    param_2=False,
)

Black 将其重新格式化为:

strange_function(
    # Comments about what this argument does
    param_1=True,
    # Comments about what this argument does
    param_2=False,
)

想要 param_1param_2 之间的新行,因为这样注释更易读。但是黑色消除了这一点。它如何阻止它这样做?

你不能。

黑色非常无情,只给你一个旋钮转动:每行允许多少个字符。