black.toml
author Pulkit Goyal <7895pulkit@gmail.com>
Mon, 03 Aug 2020 18:08:37 +0530
changeset 45361 cdc50e1929b0
parent 44232 5e84a96d865b
permissions -rw-r--r--
mergeresult: yield from getactions() instead of buidling a list and returning Only 7 out of 29 callers change the underlying dict while iterating. So it's better to yield and wrap the 7 callers with `list()`. Differential Revision: https://phab.mercurial-scm.org/D8882

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