view black.toml @ 43668:53607fd3ec6c stable

cffi: fix build on Python 3 CFFI expects the arguments to be of type str, which means that the string literals should not have the `b` prefix.
author Manuel Jacob <me@manueljacob.de>
date Sun, 17 Nov 2019 19:55:01 +0100
parents 2247bf3cec76
children 5e84a96d865b
line wrap: on
line source

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
| contrib/python-zstandard/
'''
skip-string-normalization = true
quiet = true