black.toml
author Manuel Jacob <me@manueljacob.de>
Mon, 09 Mar 2020 05:19:02 +0100
changeset 44487 69ae64637be5
parent 44232 5e84a96d865b
permissions -rw-r--r--
tests: use native string type for parsed hghave log lines Before this change, on Python 2, the parsed messages were decoded to unicode, causing an implicit conversion from unicode to str later.

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