Spaces:
Build error
Build error
File size: 369 Bytes
63670e0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [tool.black]
line-length = 100
target-version = ['py39']
skip-string-normalization = true
[tool.flake8]
max-line-length = 100
ignore = [
"E203", # whitespace before ':'
"E501", # line too long
"W503", # line break before binary operator
]
exclude = ["venv", "__pycache__"]
[tool.isort]
profile = "black"
line_length = 100
skip = ["venv", "__pycache__"] |