autopep8 (vscode) 是否有任何标志允许在同一行中进行多次导入?

Are there any flags for autopep8 (vscode), to allow multiple import in the same line?

我知道您可以在 .vscode/settings.json 中传递 "python.formatting.autopep8Args": ["--max-line-length=200"] 来覆盖一行的最大 79 长度,是否有任何允许多行导入的标志。 我想要的:

import json, os, h5py, pyperclip

这只是一个例子,通常我会在代码中将具有类似功能的模块分组。它更像是一种偏好 ;).

编辑:我总是可以做类似

的事情
# fmt: off
import json, os, h5py, pyperclip
# fmt: on

但我想要一个纯粹基于 vs 代码设置的解决方案,就像我上面解释的 max-line-length

"python.formatting.autopep8Args": ["--ignore", "E401"],

这是 official docs,您可以找到如何使用合适的配置对其进行配置。