gpt4 book ai didi

python - 运行黑色会导致错误 "This float doesn' t 有一个前导数字”

转载 作者:行者123 更新时间:2023-12-03 08:06:58 25 4
gpt4 key购买 nike

当我尝试使用 black a_file.py 在 python 项目的特定文件上运行 black 时,出现以下错误:

 Error reading configuration file: This float doesn't have a leading digit (line 19 column 1 char 205)

下面是我的 pyproject.toml 文件:

[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| buck-out
| build
)/
'''

[flake8]
max-line-length = 88
max-complexity = 18
select = B, C, E, F, W, T4, B9
ignore = E203, E266, E501, W503, F403, F401

如何解决这个问题?

最佳答案

这是您的 pyproject.toml 文件使用错误语法的问题。例如,诸如 select = B, C, E, F, W, T4, B9 的行是 INI 语法 - 在 TOML 中,等效项为 select = "B, C, E、F、W、T4、B9"select = ["B"、"C"、"E"、"F"、"W"、"T4"、"B9"].

但是,flake8 does not yet support pyproject.toml首先。只需从文件中删除其配置即可。

Configuration Locations

Flake8 supports storing its configuration in your project in one of setup.cfg, tox.ini, or .flake8.

关于python - 运行黑色会导致错误 "This float doesn' t 有一个前导数字”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71996730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com