black.toml
author Manuel Jacob <me@manueljacob.de>
Tue, 16 Jun 2020 12:59:45 +0200
branchstable
changeset 44967 de7bdb0e2a95
parent 44147 5e84a96d865b
permissions -rw-r--r--
py3: suppress DeprecationWarning about deprecated base64 module aliases base64.encodestring() / base64.decodestring() were renamed to base64.encodebytes() / base64.decodebytes() in Python 3. The old names still worked, but raised a DeprecationWarning.

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