pyproject.toml
author Martin von Zweigbergk <martinvonz@google.com>
Tue, 12 Oct 2021 14:28:51 -0700
changeset 48214 1895027c5051
parent 48004 58fe6d127a01
permissions -rw-r--r--
chistedit: remove some local variable and access state on self instead Now that we've replaced the state dict by a class, some of the local variables that just do `foo = self.foo` seem unnecessary. Differential Revision: https://phab.mercurial-scm.org/D11652

[build-system]
requires = ["setuptools", "wheel"]

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