0

我在 vscode 中使用 yapf 作为代码 linter。
但是,当我保存(自动 linting)时,它会增加额外的无用空间。像这样。
这是原始代码

def foo():
    fuu(a,
        b)

在 yapf linting 之后

def foo():
    fuu(a,
        b                   )#added extra useless spaces.  

可能是什么问题呢?
提前致谢

4

0 回答 0