pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Fri, 19 Jul 2024 16:38:53 -0400
changeset 51720 e618a1756b08
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
typing: avoid some useless @overload definitions in `mercurial.util` Apparently pytype considered the name as well as the type of each argument, and generates @overload definitions if they don't match. At best this is clutter, and can easily be removed.

[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