black.toml
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 18 Dec 2019 13:30:48 -0800
changeset 43955 75ec46c63657
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
resourceutil: use `from importlib import resources` Without this patch, we get the following error from when trying to run hg with PyOxidizer: module 'importlib' has no attribute 'resources' I don't know what why that happens, but `from importlib import resources` is the form I would prefer anyway, so let's use that now that the impoort-checker has been fixed. Differential Revision: https://phab.mercurial-scm.org/D7701

[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