black.toml
author Yuya Nishihara <yuya@tcha.org>
Tue, 11 Feb 2020 19:53:56 +0900
branchstable
changeset 44179 5cd2d91eeebd
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
chgserver: spawn new process if schemes change The schemes extension updates hg.schemes table. It's technically possible for hg.repository() to look for e.g. ui.schemes instead of depending on module-local table, but I don't think the change would make much sense since [schemes] is usually specified in ~/.hgrc and thus it can be considered static data.

[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