pyproject.toml
author Martin von Zweigbergk <martinvonz@google.com>
Mon, 14 Feb 2022 22:16:29 -0800
changeset 48787 69000dc0dced
parent 48004 58fe6d127a01
permissions -rw-r--r--
filemerge: reduce some duplication in `_maketempfiles()` The two callers of the local `maketempfrompath()` function used the returned file object in the same way. We can reduce duplication by moving that code into the function. Differential Revision: https://phab.mercurial-scm.org/D12192

[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